ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.iliLinkConfirmationTableGUI.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 include_once 'Services/Table/classes/class.ilTable2GUI.php';
5 
14 {
15  public function __construct($a_parent_obj, $a_data, $a_cmd, $a_default_form_action)
16  {
17  global $ilCtrl, $lng, $ilAccess, $lng;
18 
19  parent::__construct($a_parent_obj, $a_cmd);
20 
21  $this->setData($a_data);
22 
23  $this->addColumn($lng->txt('type'), 'type', '1%');
24  $this->addColumn($lng->txt('title'), 'title', '33%');
25  $this->addColumn($lng->txt('description'), 'description', '33%');
26  $this->addColumn($lng->txt('last_change'), 'last_change', '33%');
27 
28  $this->enable('sort');
29  $this->enable('header');
30  $this->setLimit(32000);
31  $this->setPrefix('confirmation');
32  $this->setFormName('confirmation');
33 
34  $this->setFormAction($ilCtrl->getFormAction($a_parent_obj, $a_default_form_action));
35 
36  $this->setRowTemplate('tpl.icrs_confirmation_row.html', 'Modules/ILinc');
37  }
38 }
39 ?>