ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
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  function __construct($a_parent_obj, $a_parent_cmd, $a_style_obj)
40  {
41  global $ilCtrl, $lng, $ilAccess, $lng, $rbacsystem;
42 
43  parent::__construct($a_parent_obj, $a_parent_cmd);
44 
45  $this->setTitle($lng->txt("sty_media_queries"));
46  $this->setDescription($lng->txt("sty_media_query_info"));
47  $this->style_obj = $a_style_obj;
48 
49  $this->addColumn("", "", "1"); // checkbox
50  $this->addColumn($this->lng->txt("sty_order"));
51  $this->addColumn($this->lng->txt("sty_query"), "");
52  $this->addColumn($this->lng->txt("actions"), "");
53  $this->setEnableHeader(true);
54  $this->setFormAction($ilCtrl->getFormAction($a_parent_obj));
55  $this->setRowTemplate("tpl.style_media_query_row.html", "Services/Style");
56  //$this->setSelectAllCheckbox("file");
57  $this->getItems();
58 
59  // action commands
60  if ($rbacsystem->checkAccess("write", (int) $_GET["ref_id"]))
61  {
62  $this->addCommandButton("saveMediaQueryOrder", $lng->txt("sty_save_order"));
63  $this->addMultiCommand("deleteMediaQueryConfirmation", $lng->txt("delete"));
64  }
65 
66  $this->setEnableTitle(true);
67  }
68 
72  function getItems()
73  {
74  $this->setData($this->style_obj->getMediaQueries());
75  }
76 
80  protected function fillRow($a_set)
81  {
82  global $lng, $ilCtrl, $ilAccess, $rbacsystem;
83 
84  $this->tpl->setVariable("MQUERY", $a_set["mquery"]);
85  $this->tpl->setVariable("MQID", $a_set["id"]);
86  $this->tpl->setVariable("ORDER_NR", $a_set["order_nr"]);
87 
88  if ($rbacsystem->checkAccess("write", (int) $_GET["ref_id"]))
89  {
90  $this->tpl->setVariable("TXT_EDIT", $lng->txt("edit"));
91  $ilCtrl->setParameter($this->parent_obj, "mq_id", $a_set["id"]);
92  $this->tpl->setVariable("LINK_EDIT_MQUERY",
93  $ilCtrl->getLinkTarget($this->parent_obj, "editMediaQuery"));
94  }
95  }
96 }
97 ?>