get_url_base()."&action=update&id=".$this->object_id; } protected function get_delete_action() { return $this->get_url_base()."&action=del&id=".$this->object_id; } protected function get_submit_action_parameters() { return $this->get_url_base()."&action=update".(!empty($this->object_id) ? "&id=".$this->object_id : ""); } protected function get_display_label() { switch ($this->name) { case 'es_rights': return "

".$this->label."

"; default: return parent::get_display_label(); } } protected function get_display_parameters_actions() { global $action; $display = "
".(!empty($action) ? "get_url_base()."'\" />" : "")." ".$this->get_display_submit_action()."
"; return $display; } public function get_display_parameters() { global $current_module; $display = "
get_submit_action_parameters()."\" > ".$this->get_display_label()."
".$this->content_form."
".$this->get_display_parameters_actions()."
"; return $display; } }