ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
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 
4 require_once 'Services/Table/classes/class.ilTable2GUI.php';
5 
15 {
22  public function __construct($a_parent_obj, $a_parent_cmd = "")
23  {
24  parent::__construct($a_parent_obj, $a_parent_cmd);
25 
26  $this->setRowTemplate('tpl.statistics_table_row.html', 'Modules/Forum');
27  $this->addColumn($this->lng->txt('frm_statistics_ranking'), 'ranking', '25%');
28  $this->addColumn($this->lng->txt('login'), 'login', '25%');
29  $this->addColumn($this->lng->txt('lastname'), 'lastname', '25%');
30  $this->addColumn($this->lng->txt('firstname'), 'firstname', '25%');
31 
32  $this->setDefaultOrderField('ranking');
33  $this->setDefaultOrderDirection('desc');
34 
35  $this->enable('hits');
36  $this->enable('sort');
37  }
38 
46  public function numericOrdering($a_field)
47  {
48  switch ($a_field) {
49  case 'ranking':
50  return true;
51 
52  default:
53  return false;
54  }
55  }
56 }
Class ilForumStatisticsTableGUI.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
Class ilTable2GUI.
enable($a_module_name)
enables particular modules of table
setRowTemplate($a_template, $a_template_dir="")
Set row template.
numericOrdering($a_field)
Should this field be sorted numeric?
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.
__construct($a_parent_obj, $a_parent_cmd="")
Constructor.