ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilStyleMediaQueryTableGUI.php
Go to the documentation of this file.
1 <?php
2 /*
3  +-----------------------------------------------------------------------------+
4  | ILIAS open source |
5  +-----------------------------------------------------------------------------+
6  | Copyright (c) 1998-2008 ILIAS open source, University of Cologne |
7  | |
8  | This program is free software; you can redistribute it and/or |
9  | modify it under the terms of the GNU General Public License |
10  | as published by the Free Software Foundation; either version 2 |
11  | of the License, or (at your option) any later version. |
12  | |
13  | This program is distributed in the hope that it will be useful, |
14  | but WITHOUT ANY WARRANTY; without even the implied warranty of |
15  | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16  | GNU General Public License for more details. |
17  | |
18  | You should have received a copy of the GNU General Public License |
19  | along with this program; if not, write to the Free Software |
20  | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21  +-----------------------------------------------------------------------------+
22 */
23 
24 include_once("Services/Table/classes/class.ilTable2GUI.php");
25 
35 {
39  protected $ctrl;
40 
44  protected $access;
45 
49  protected $rbacsystem;
50 
54  public function __construct($a_parent_obj, $a_parent_cmd, $a_style_obj)
55  {
56  global $DIC;
57 
58  $this->ctrl = $DIC->ctrl();
59  $this->lng = $DIC->language();
60  $this->access = $DIC->access();
61  $this->rbacsystem = $DIC->rbac()->system();
62  $ilCtrl = $DIC->ctrl();
63  $lng = $DIC->language();
64  $ilAccess = $DIC->access();
65  $lng = $DIC->language();
66  $rbacsystem = $DIC->rbac()->system();
67 
68  parent::__construct($a_parent_obj, $a_parent_cmd);
69 
70  $this->setTitle($lng->txt("sty_media_queries"));
71  $this->setDescription($lng->txt("sty_media_query_info"));
72  $this->style_obj = $a_style_obj;
73 
74  $this->addColumn("", "", "1"); // checkbox
75  $this->addColumn($this->lng->txt("sty_order"));
76  $this->addColumn($this->lng->txt("sty_query"), "");
77  $this->addColumn($this->lng->txt("actions"), "");
78  $this->setEnableHeader(true);
79  $this->setFormAction($ilCtrl->getFormAction($a_parent_obj));
80  $this->setRowTemplate("tpl.style_media_query_row.html", "Services/Style/Content");
81  //$this->setSelectAllCheckbox("file");
82  $this->getItems();
83 
84  // action commands
85  if ($this->parent_obj->checkWrite()) {
86  $this->addCommandButton("saveMediaQueryOrder", $lng->txt("sty_save_order"));
87  $this->addMultiCommand("deleteMediaQueryConfirmation", $lng->txt("delete"));
88  }
89 
90  $this->setEnableTitle(true);
91  }
92 
96  public function getItems()
97  {
98  $this->setData($this->style_obj->getMediaQueries());
99  }
100 
104  protected function fillRow($a_set)
105  {
106  $lng = $this->lng;
108  $ilAccess = $this->access;
110 
111  $this->tpl->setVariable("MQUERY", $a_set["mquery"]);
112  $this->tpl->setVariable("MQID", $a_set["id"]);
113  $this->tpl->setVariable("ORDER_NR", $a_set["order_nr"]);
114 
115  if ($this->parent_obj->checkWrite()) {
116  $this->tpl->setVariable("TXT_EDIT", $lng->txt("edit"));
117  $ilCtrl->setParameter($this->parent_obj, "mq_id", $a_set["id"]);
118  $this->tpl->setVariable(
119  "LINK_EDIT_MQUERY",
120  $ilCtrl->getLinkTarget($this->parent_obj, "editMediaQuery")
121  );
122  }
123  }
124 }
addCommandButton($a_cmd, $a_text, $a_onclick='', $a_id="", $a_class=null)
Add Command button.
setDescription($a_val)
Set description.
__construct($a_parent_obj, $a_parent_cmd, $a_style_obj)
Constructor.
global $DIC
Definition: saml.php:7
getItems()
Get items of current folder.
TableGUI class for style editor (image list)
global $ilCtrl
Definition: ilias.php:18
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
Class ilTable2GUI.
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.
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.
setEnableHeader($a_enableheader)
Set Enable Header.
setEnableTitle($a_enabletitle)
Set Enable Title.