ILIAS  release_7 Revision v7.30-3-g800a261c036
class.ilDclTableViewTableGUI.php
Go to the documentation of this file.
1 <?php
2 
12 {
13 
17  protected $ctrl;
21  protected $table;
25  protected $parent_obj;
26 
27 
35  public function __construct(ilDclTableViewGUI $a_parent_obj, $a_parent_cmd, ilDclTable $table)
36  {
37  global $DIC;
38  $lng = $DIC['lng'];
39  $ilCtrl = $DIC['ilCtrl'];
40  parent::__construct($a_parent_obj, $a_parent_cmd);
41 
42  $this->parent_obj = $a_parent_obj;
43  $this->table = $table;
44  $this->ctrl = $ilCtrl;
45  $this->lng = $lng;
46 
47  $this->setExternalSegmentation(true);
48  $this->setExternalSorting(true);
49 
50  if ($this->parent_obj instanceof ilDclTableViewGUI) {
51  $ilCtrl->setParameterByClass('ildcltableviewgui', 'table_id', $table->getId());
52  $this->setFormAction($ilCtrl->getFormActionByClass('ildcltableviewgui'));
53  $this->addMultiCommand('confirmDeleteTableviews', $lng->txt('dcl_delete_views'));
54  $this->addCommandButton('saveTableViewOrder', $lng->txt('dcl_save_order'));
55 
56  $this->setFormAction($ilCtrl->getFormAction($a_parent_obj));
57  $this->setFormName('tableview_list');
58 
59  $this->addColumn('', '', '1', true);
60  $this->addColumn($lng->txt('dcl_order'), null, '30px');
61 
62  $this->setRowTemplate('tpl.tableview_list_row.html', 'Modules/DataCollection');
63  $this->setData($this->table->getTableViews());
64  } elseif ($this->parent_obj instanceof ilDclDetailedViewGUI) {
65  $this->setRowTemplate('tpl.detailview_list_row.html', 'Modules/DataCollection');
66  $this->setData($this->table->getVisibleTableViews($this->parent_obj->parent_obj->ref_id, true));
67  }
68 
69  $this->addColumn($lng->txt('title'), null, 'auto');
70  $this->addColumn($lng->txt('description'), null, 'auto');
71  $this->addColumn($lng->txt('dcl_configuration_complete'), null, 'auto');
72  $this->addColumn($lng->txt('actions'), null, '30px');
73 
74  $this->setTopCommands(true);
75  $this->setEnableHeader(true);
76  $this->setShowRowsSelector(false);
77  $this->setShowTemplates(false);
78  $this->setEnableHeader(true);
79  $this->setEnableTitle(true);
80  $this->setDefaultOrderDirection('asc');
81  $this->setLimit(0);
82 
83  $this->setId('dcl_tableviews');
84  $this->setTitle($lng->txt("dcl_tableviews_table"));
85  $this->setStyle('table', $this->getStyle('table') . ' ' . 'dcl_record_list');
86  }
87 
88 
92  public function fillRow($a_set)
93  {
94  if ($this->parent_obj instanceof ilDclTableViewGUI) {
95  $this->tpl->setVariable("ID", $a_set->getId());
96  $this->tpl->setVariable("ORDER_NAME", "order[{$a_set->getId()}]");
97  $this->tpl->setVariable("ORDER_VALUE", $a_set->getOrder());
98  }
99  $this->tpl->setVariable("TITLE", $a_set->getTitle());
100  $this->ctrl->setParameterByClass('ilDclTableViewEditGUI', 'tableview_id', $a_set->getId());
101  $this->tpl->setVariable("TITLE_LINK", $this->ctrl->getLinkTargetByClass('ilDclTableViewEditGUI'));
102  $this->tpl->setVariable("DESCRIPTION", $a_set->getDescription());
103  $this->tpl->setVariable("DCL_CONFIG",
104  $a_set->validateConfigCompletion() ? ilUtil::getImagePath('icon_ok_monochrome.svg', "/Modules/DataCollection") : ilUtil::getImagePath('icon_not_ok_monochrome.svg', "/Modules/DataCollection")
105  );
106  $this->tpl->setVariable('ACTIONS', $this->buildAction($a_set->getId()));
107  }
108 
109 
117  protected function buildAction($id)
118  {
119  if ($this->parent_obj instanceof ilDclTableViewGUI) {
120  $alist = new ilAdvancedSelectionListGUI();
121  $alist->setId($id);
122  $alist->setListTitle($this->lng->txt('actions'));
123  $this->ctrl->setParameterByClass('ildcltableviewgui', 'tableview_id', $id);
124  $this->ctrl->setParameterByClass('ilDclDetailedViewDefinitionGUI', 'tableview_id', $id);
125  $alist->addItem($this->lng->txt('edit'), '', $this->ctrl->getLinkTargetByClass('ildcltablevieweditgui', 'editGeneralSettings'));
126  $alist->addItem($this->lng->txt('copy'), '', $this->ctrl->getLinkTargetByClass('ildcltablevieweditgui', 'copy'));
127  $alist->addItem($this->lng->txt('delete'), '', $this->ctrl->getLinkTargetByClass('ildcltablevieweditgui', 'confirmDelete'));
128 
129  return $alist->getHTML();
130  } elseif ($this->parent_obj instanceof ilDclDetailedViewGUI) {
131  $button = ilDclLinkButton::getInstance();
132  $this->ctrl->setParameterByClass('ilDclDetailedViewGUI', 'tableview_id', $id);
133  $this->ctrl->saveParameterByClass('ilDclDetailedViewGUI', 'record_id');
134  $button->setUrl($this->ctrl->getLinkTargetByClass('ilDclDetailedViewGUI', 'renderRecord'));
135  $button->setCaption('view');
136 
137  return $button->getToolbarHTML();
138  }
139  }
140 }
addCommandButton($a_cmd, $a_text, $a_onclick='', $a_id="", $a_class=null)
Add Command button.
setExternalSorting($a_val)
Set external sorting.
setStyle($a_element, $a_style)
Class ilDclTableViewGUI.
setShowTemplates($a_value)
Toggle templates.
setExternalSegmentation($a_val)
Set external segmentation.
__construct(ilDclTableViewGUI $a_parent_obj, $a_parent_cmd, ilDclTable $table)
ilDclTableViewTableGUI constructor.
getId()
Get table id.
Class ilDclBaseFieldModel.
setId($a_val)
Set id.
Class ilDclTableViewTableGUI.
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
buildAction($id)
build either actions menu or view button
setTopCommands($a_val)
Set top commands (display command buttons on top of table, too)
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
global $DIC
Definition: goto.php:24
addMultiCommand($a_cmd, $a_text)
Add Command button.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
setFormName($a_formname="")
Set Form name.
__construct(Container $dic, ilPlugin $plugin)
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.
setShowRowsSelector($a_value)
Toggle rows-per-page selector.
setEnableHeader($a_enableheader)
Set Enable Header.
setEnableTitle($a_enabletitle)
Set Enable Title.
getStyle($a_element)
setLimit($a_limit=0, $a_default_limit=0)