".$titre_page.""; } protected function get_form_title() { return ''; } protected function init_default_selected_filters() { global $pmb_lecteurs_localises; if($pmb_lecteurs_localises) { $this->add_selected_filter('location'); } $this->add_selected_filter('status'); $this->add_empty_selected_filter(); if(!$pmb_lecteurs_localises) { $this->add_empty_selected_filter(); } $this->add_selected_filter('categorie'); $this->add_selected_filter('codestat_one'); } protected function init_default_columns() { global $sub; if(count($this->get_selection_actions())) { $this->add_column_selection(); } $this->add_column('cb'); $this->add_column('empr_name'); $this->add_column('adr1'); $this->add_column('ville'); $this->add_column('birth'); $this->add_column('aff_date_expiration'); $this->add_column('empr_statut_libelle'); switch ($sub) { case "encours" : break; case "categ_change" : $this->add_column('categ_libelle'); $this->add_column('categ_change'); break; default : $this->add_column('relance', ''); break; } } protected function get_display_spreadsheet_title() { global $titre_page; $this->spreadsheet->write_string(0,0,$titre_page); } protected function get_html_title() { global $titre_page; return "

".$titre_page."

"; } protected function get_selection_actions() { global $msg; global $sub; global $current_module; global $empr_show_caddie; if(!isset($this->selection_actions)) { $this->selection_actions = array(); switch ($sub) { case 'categ_change': $link = array( 'href' => static::get_controller_url_base()."&categ_action=change_categ_empr", 'confirm' => $msg["empr_categ_confirm_change"] ); $this->selection_actions[] = $this->get_selection_action('change_categ', $msg["save_change_categ"], 'group_by_grey.png', $link); break; case 'limite': case 'depasse': $link = array( 'href' => static::get_controller_url_base()."&action=print_all" ); $this->selection_actions[] = $this->get_selection_action('print_all_relances', $msg["print_all_relances"], 'doc.gif', $link); break; } if ($empr_show_caddie) { $link = array(); $link['openPopUp'] = "./cart.php?object_type=EMPR&action=add_empr_".$sub."&sub_action=add"; $link['openPopUpTitle'] = 'cart'; $this->selection_actions[] = $this->get_selection_action('add_empr_cart', $msg['add_empr_cart'], 'basket_20x20.gif', $link); } } return $this->selection_actions; } protected function get_selection_mode() { return "button"; } /** * Affichage d'une colonne * @param object $object * @param string $property */ protected function get_display_cell($object, $property) { $display = ''; switch ($property) { case 'relance': case 'categ_change': $attributes = array(); break; default: $attributes = array( 'onclick' => "document.location=\"".$this->get_edition_link($object)."\";" ); break; } $content = $this->get_cell_content($object, $property); $display = $this->get_display_format_cell($content, $property, $attributes); return $display; } protected function add_event_on_selection_action($action=array()) { global $msg, $charset; $display = " on(dom.byId('".$this->objects_type."_selection_action_".$action['name']."_link'), 'click', function() { var selection = new Array(); query('.".$this->objects_type."_selection:checked').forEach(function(node) { selection.push(node.value); }); var categ_change = new Array(); query('.".$this->objects_type."_categ_change').forEach(function(node) { categ_change.push(node); }); if(selection.length) { var confirm_msg = '".(isset($action['link']['confirm']) ? addslashes($action['link']['confirm']) : '')."'; if(!confirm_msg || confirm(confirm_msg)) { ".(isset($action['link']['href']) && $action['link']['href'] ? " var selected_objects_form = domConstruct.create('form', { action : '".$action['link']['href']."', name : '".$this->objects_type."_selected_objects_form', id : '".$this->objects_type."_selected_objects_form', method : 'POST' }); selection.forEach(function(selected_option) { var selected_objects_hidden = domConstruct.create('input', { type : 'hidden', name : '".$this->get_name_selected_objects()."[]', value : selected_option }); domConstruct.place(selected_objects_hidden, selected_objects_form); }); categ_change.forEach(function(selector_node) { var empr_id = selector_node.getAttribute('data-empr-id'); var selected_categs_hidden = domConstruct.create('input', { type : 'hidden', name : '".$this->objects_type."_categ_change['+empr_id+']', value : selector_node.value }); domConstruct.place(selected_categs_hidden, selected_objects_form); }); domConstruct.place(selected_objects_form, dom.byId('list_ui_selection_actions')); dom.byId('".$this->objects_type."_selected_objects_form').submit(); " : "")." ".(isset($action['link']['openPopUp']) && $action['link']['openPopUp'] ? "openPopUp('".$action['link']['openPopUp']."&selected_objects='+selection.join(','), '".$action['link']['openPopUpTitle']."'); return false;" : "")." ".(isset($action['link']['onClick']) && $action['link']['onClick'] ? $action['link']['onClick']."(selection); return false;" : "")." } } else { alert('".addslashes($msg['list_ui_no_selected'])."'); } }); "; return $display; } protected function get_display_others_actions() { global $msg, $charset; return "
".$msg["empr_chang_statut"]."  ".gen_liste("select idstatut, statut_libelle from empr_statut","idstatut","statut_libelle",$this->objects_type."_selection_action_empr_change_status","","",0,(isset($msg['none']) ? $msg['none'] : ''),0,(isset($msg['none']) ? $msg['none'] : ''))."   "; } public function run_change_status() { $change_status = $this->objects_type."_empr_change_status"; global ${$change_status}; if(!empty(${$change_status})) { $selected_objects = static::get_selected_objects(); if(count($selected_objects)) { foreach ($this->objects as $object) { if(in_array($object->id, $selected_objects)) { $query = "UPDATE empr set empr_statut='".$$change_status."' where id_empr = ".$object->id; pmb_mysql_query($query); $object->set_empr_statut($$change_status); } } } $this->filters['empr_statut_edit'] = ${$change_status}*1; } } protected function get_edition_link($object) { global $base_path; return $base_path.'/circ.php?categ=pret&form_cb='.$object->cb; } }