ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
class.ilForumStatisticsTableGUI.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3
13{
20 public function __construct($a_parent_obj, $a_parent_cmd = "")
21 {
22 parent::__construct($a_parent_obj, $a_parent_cmd);
23
24 $this->setRowTemplate('tpl.statistics_table_row.html', 'Modules/Forum');
25 $this->addColumn($this->lng->txt('frm_statistics_ranking'), 'ranking', '25%');
26 $this->addColumn($this->lng->txt('login'), 'login', '25%');
27 $this->addColumn($this->lng->txt('lastname'), 'lastname', '25%');
28 $this->addColumn($this->lng->txt('firstname'), 'firstname', '25%');
29
30 $this->setDefaultOrderField('ranking');
31 $this->setDefaultOrderDirection('desc');
32
33 $this->enable('hits');
34 $this->enable('sort');
35 }
36
44 public function numericOrdering($a_field)
45 {
46 switch ($a_field) {
47 case 'ranking':
48 return true;
49
50 default:
51 return false;
52 }
53 }
54}
An exception for terminatinating execution or to throw for unit testing.
Class ilForumStatisticsTableGUI.
__construct($a_parent_obj, $a_parent_cmd="")
Constructor.
numericOrdering($a_field)
Should this field be sorted numeric?
Class ilTable2GUI.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
addColumn( $a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="", $a_tooltip_with_html=false)
Add a column to the header.
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
enable($a_module_name)
enables particular modules of table