ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
class.ilMailingListsTableGUI.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2014 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4require_once 'Services/Table/classes/class.ilTable2GUI.php';
5
12{
16 protected $lng;
17
21 protected $ctrl;
22
28 public function __construct($a_parent_obj, $a_parent_cmd = '', $a_template_context = '')
29 {
30 global $DIC;
31
32 $this->lng = $DIC['lng'];
33 $this->ctrl = $DIC['ilCtrl'];
34
35 $this->setId('show_mlng_lists_tbl');
36 parent::__construct($a_parent_obj, $a_parent_cmd, $a_template_context);
37
38 $this->setFormAction($this->ctrl->getFormAction($a_parent_obj), 'showForm');
39 $this->setTitle($this->lng->txt('mail_mailing_lists'));
40 $this->setRowTemplate('tpl.mail_mailing_lists_listrow.html', 'Services/Contact');
41 $this->setDefaultOrderField('title');
42 $this->setSelectAllCheckbox('ml_id');
43 $this->setNoEntriesText($this->lng->txt('mail_search_no'));
44
45 $this->initColumns();
46 }
47
48 protected function initColumns()
49 {
50 $this->addColumn('', 'check', '10%', true);
51 $this->addColumn($this->lng->txt('title'), 'title', '30%');
52 $this->addColumn($this->lng->txt('description'), 'description', '30%');
53 $this->addColumn($this->lng->txt('members'), 'members', '20%');
54 $this->addColumn($this->lng->txt('actions'), '', '10%');
55 }
56}
An exception for terminatinating execution or to throw for unit testing.
__construct($a_parent_obj, $a_parent_cmd='', $a_template_context='')
Class ilTable2GUI.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
setNoEntriesText($a_text)
Set text for an empty table.
setSelectAllCheckbox($a_select_all_checkbox, $a_select_all_on_top=false)
Set the name of the checkbox that should be toggled with a select all button.
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.
setId($a_val)
Set id.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc
$DIC
Definition: xapitoken.php:46