$value) { ${$name} = $value; } } $form_proceedings = "
 
 
 
 
 
 
 
 
 
 
 
 
"; if ($acquisition_active) { $form_proceedings .= "
 
"; } $form_proceedings .= "
 
 
 
 
 
 
"; if($pmb_indexation_docnum){ $form_proceedings .= "
 
"; } $form_proceedings .= "
 
"; if($pmb_gestion_financiere && $pmb_gestion_amende){ $form_proceedings .= "
 
"; } $form_proceedings .= "
 
"; if($pmb_synchro_rdf){ $form_proceedings .= "
 
"; } if($faq_active){ $form_proceedings .= "
 
"; } if($cms_active){ $form_proceedings .= "
 
"; } if($thesaurus_concepts_active==1){ $form_proceedings .= "
 
"; } $form_proceedings .= "
 
 
"; if ($pmb_explnum_controle_doublons) { $form_proceedings .= "
 
"; } if (pmb_mysql_num_rows(pmb_mysql_query("show tables like 'empr_passwords'"))) { $form_proceedings .= "
 
"; } return $form_proceedings; } /** * affichage du % d'avancement et de l'état * @param number $start * @param number $count */ public static function get_display_progress($start=0, $count=0) { // taille de la jauge pour affichage $jauge_size = GAUGE_SIZE; $jauge_size .= "px"; // définition de l'état de la jauge $state = floor($start / ($count / $jauge_size)); $state .= "px"; // mise à jour de l'affichage de la jauge $display = "
"; $display .= "
"; // calcul pourcentage avancement $percent = floor(($start/$count)*100); // affichage du % d'avancement et de l'état $display .= "
$percent%
"; return $display; } public static function get_display_final_progress() { global $table_size; // taille de la jauge pour affichage $jauge_size = GAUGE_SIZE; $jauge_size .= "px"; $display = "
100%
"; return $display; } public static function get_current_state_form($v_state, $spec, $index_quoi='', $next=0, $count=0) { global $current_module; $form = "
"; return $form; } public static function get_process_state_form($v_state, $spec, $affected='', $pass='') { global $current_module; $form = "
"; if($affected != '') $form .= ""; if($pass != '') $form .= ""; $form .= "
"; return $form; } } // fin de déclaration de la classe netbase