add_column('name'); } protected function get_buttons_list() { return ""; } protected function get_grouped_label($object, $property) { global $charset; $grouped_label = parent::get_grouped_label($object, $property); $space = ""; $grouped_label = "$space".htmlentities($grouped_label,ENT_QUOTES, $charset).""; return $grouped_label; } protected function get_display_cell($object, $property) { switch ($property) { default: $attributes = array( 'onclick' => "document.location=\"".static::get_controller_url_base()."&action=execute&id_proc=".$object->idproc."\"" ); break; } $content = $this->get_cell_content($object, $property); $display = $this->get_display_format_cell($content, $property, $attributes); return $display; } }