ILIAS  release_5-0 Revision 5.0.0-1144-gc4397b1f870
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilExplorerSelectInputGUI.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
5 include_once("./Services/Table/interfaces/interface.ilTableFilterItem.php");
6 include_once("./Services/Form/classes/class.ilFormPropertyGUI.php");
7 
17 {
24  function __construct($a_title, $a_postvar, $a_explorer_gui, $a_multi = false)
25  {
26  global $lng;
27 
28  $this->multi_nodes = $a_multi;
29  $this->explorer_gui = $a_explorer_gui;
30 
31  parent::__construct($a_title, $a_postvar);
32  $this->setType("exp_select");
33  }
34 
41  function getExplHandleCmd()
42  {
43  return "handleExplorerCommand";
44  }
45 
50  {
51  $this->explorer_gui->handleCommand();
52  }
53 
60  abstract function getTitleForNodeId($a_id);
61 
67  function setValue($a_value)
68  {
69  if ($this->multi_nodes && !is_array($a_value))
70  {
71  if ($a_value !== false)
72  {
73  $this->value = array($a_value);
74  }
75  else
76  {
77  $this->value = array();
78  }
79  }
80  else
81  {
82  $this->value = $a_value;
83  }
84  }
85 
91  function getValue()
92  {
93  return $this->value;
94  }
95 
101  function setValueByArray($a_values)
102  {
103  $this->setValue($a_values[$this->getPostVar()]);
104  }
105 
111  function checkInput()
112  {
113  global $lng;
114 
115  // sanitize
116  if ($this->multi_nodes)
117  {
118  if (!is_array($_POST[$this->getPostVar()]))
119  {
120  $_POST[$this->getPostVar()] = array();
121  }
122 
123  foreach ($_POST[$this->getPostVar()] as $k => $v)
124  {
125  $_POST[$this->getPostVar()][$k] = ilUtil::stripSlashes($v);
126  }
127  }
128  else
129  {
130  $_POST[$this->getPostVar()] = ilUtil::stripSlashes($_POST[$this->getPostVar()]);
131  }
132 
133  // check required
134  if ($this->getRequired())
135  {
136  if ((!$this->multi_nodes && trim($_POST[$this->getPostVar()]) == "") ||
137  ($this->multi_nodes && count($_POST[$this->getPostVar()]) == 0))
138  {
139  $this->setAlert($lng->txt("msg_input_is_required"));
140  return false;
141  }
142  }
143  return true;
144  }
145 
146 
150  function render($a_mode = "property_form")
151  {
152  global $lng, $ilCtrl, $ilObjDataCache, $tree;
153 
154  include_once("./Services/YUI/classes/class.ilYuiUtil.php");
156  $GLOBALS["tpl"]->addJavascript("./Services/UIComponent/Explorer2/js/Explorer2.js");
157 
158  $tpl = new ilTemplate("tpl.prop_expl_select.html", true, true, "Services/UIComponent/Explorer2");
159 
160 
161  // set values
162  $val = $this->getValue();
163  if (is_array($val))
164  {
165  $val_txt = $sep = "";
166  foreach ($val as $v)
167  {
168  $tpl->setCurrentBlock("node_hid");
169  $tpl->setVariable("HID_NAME", $this->getPostVar()."[]");
170  $tpl->setVariable("HID_VAL", $v);
171  $tpl->parseCurrentBlock();
172  $val_txt.= $sep.$this->getTitleForNodeId($v);
173  $sep = ", ";
174  $this->explorer_gui->setNodeOpen($v);
175  $this->explorer_gui->setNodeSelected($v);
176  }
177  $tpl->setVariable("VAL_TXT", $val_txt);
178  }
179  else if ($val != "")
180  {
181  $tpl->setCurrentBlock("node_hid");
182  $tpl->setVariable("HID_NAME", $this->getPostVar());
183  $tpl->setVariable("HID_VAL", $val);
184  $tpl->parseCurrentBlock();
185  $tpl->setVariable("VAL_TXT", $this->getTitleForNodeId($val));
186  $this->explorer_gui->setNodeOpen($val);
187  $this->explorer_gui->setNodeSelected($val);
188  }
189 
190  $tpl->setVariable("POST_VAR", $this->getPostVar());
191  $tpl->setVariable("ID", $this->getFieldId());
192 // $tpl->setVariable("PROPERTY_VALUE", ilUtil::prepareFormOutput($this->getValue()));
193  $tpl->setVariable("TXT_SELECT", $lng->txt("select"));
194  $tpl->setVariable("TXT_RESET", $lng->txt("reset"));
195 
196  $tpl->setVariable("EXPL", $this->explorer_gui->getHTML());
197 
198  $top_tb = new ilToolbarGUI();
199 
200  include_once "Services/UIComponent/Button/classes/class.ilLinkButton.php";
201 
202  $button = ilLinkButton::getInstance();
203  $button->setCaption("select");
204  $button->addCSSClass("ilExplSelectInputButS");
205  $button->setOmitPreventDoubleSubmission(true);
206  $top_tb->addButtonInstance($button);
207 
208  $button = ilLinkButton::getInstance();
209  $button->setCaption("cancel");
210  $button->addCSSClass("ilExplSelectInputButC");
211  $button->setOmitPreventDoubleSubmission(true);
212  $top_tb->addButtonInstance($button);
213 
214  // :TODO: we should probably clone the buttons properly
215  $tpl->setVariable("TOP_TB", $top_tb->getHTML());
216  $tpl->setVariable("BOT_TB", $top_tb->getHTML());
217 
218  //$tpl->setVariable("HREF_SELECT",
219  // $ilCtrl->getLinkTargetByClass(array($parent_gui, "ilformpropertydispatchgui", "ilrepositoryselectorinputgui"),
220  // "showRepositorySelection"));
221 
222  /*if ($this->getValue() > 0 && $this->getValue() != ROOT_FOLDER_ID)
223  {
224  $tpl->setVariable("TXT_ITEM",
225  $ilObjDataCache->lookupTitle($ilObjDataCache->lookupObjId($this->getValue())));
226  }
227  else
228  {
229  $nd = $tree->getNodeData(ROOT_FOLDER_ID);
230  $title = $nd["title"];
231  if ($title == "ILIAS")
232  {
233  $title = $lng->txt("repository");
234  }
235  if (in_array($nd["type"], $this->getClickableTypes()))
236  {
237  $tpl->setVariable("TXT_ITEM", $title);
238  }
239  }*/
240 
241  return $tpl->get();
242  }
243 
248  function insert(&$a_tpl)
249  {
250  $a_tpl->setCurrentBlock("prop_generic");
251  $a_tpl->setVariable("PROP_GENERIC", $this->render());
252  $a_tpl->parseCurrentBlock();
253  }
254 
259  {
260  $html = $this->render("table_filter");
261  return $html;
262  }
263 
264 }
Interface for property form input GUI classes that can be used in table filters.
$_POST['username']
Definition: cron.php:12
getPostVar()
Get Post Variable.
getTableFilterHTML()
Get HTML for table filter.
__construct($a_title, $a_postvar, $a_explorer_gui, $a_multi=false)
Constructor.
checkInput()
Check input, strip slashes etc.
setAlert($a_alert)
Set Alert Text.
global $tpl
Definition: ilias.php:8
global $ilCtrl
Definition: ilias.php:18
setType($a_type)
Set Type.
setValueByArray($a_values)
Set value by array.
getExplHandleCmd()
Get explorer handle command function.
$GLOBALS['ct_recipient']
getTitleForNodeId($a_id)
Get title for node id (needs to be overwritten, if explorer is not a tree eplorer.
getFieldId()
Get Post Variable.
special template class to simplify handling of ITX/PEAR
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
handleExplorerCommand()
Handle explorer command.
static initPanel($a_resize=false)
Init yui panel.
This class represents a property in a property form.
global $lng
Definition: privfeed.php:40
Select explorer tree nodes input GUI.
insert(&$a_tpl)
Insert property html.
render($a_mode="property_form")
Render item.