$value) { ${$name} = $value; } } //-----------LLIUREX-------------- //Changed to checked: index_global,index_notices //---------LLIUREX------------------ // R�indexer $form_proceedings = "

".$msg['nettoyage_operations_reindex']."

 
 
"; if ($acquisition_active) { $form_proceedings .= "
 
"; } if($pmb_indexation_docnum){ $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 .= "
 
"; } //-----------------LLIUREX------------------ //Changed to checked: index_authorities //----------------LLIUREX---------------- $form_proceedings .= "
 
"; // Supprimer $form_proceedings .= "

".$msg['nettoyage_operations_delete']."

 
 
 
 
 
 
 
 
 
"; // Nettoyer $form_proceedings .= "

".$msg['nettoyage_operations_clean']."

 
 
"; if (thumbnail::is_valid_folder('record') && pmb_mysql_num_rows(pmb_mysql_query("select notice_id from notices where thumbnail_url like 'data:image%'"))) { $form_proceedings .= "
 
"; } //-------------LLIUREX------------- //Changed to checked:gen_phonetique //------------LLIUREX-------------- // G�n�rer $form_proceedings .= "

".$msg['nettoyage_operations_generate']."

 
 
 
 
 
"; if ($pmb_explnum_controle_doublons) { $form_proceedings .= "
 
"; } if (pmb_mysql_num_rows(pmb_mysql_query("show columns from aut_link like 'id_aut_link'")) == 0) { $form_proceedings .= "
 
"; } // Vider $form_proceedings .= "

".$msg['nettoyage_operations_empty']."

 
"; if($pmb_gestion_financiere && $pmb_gestion_amende){ $form_proceedings .= "
 
"; } $form_proceedings .= "
 
"; // Mot de passe $form_proceedings .= "

".$msg['nettoyage_operations_password']."

 
"; 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