5 include_once(
"./Services/Table/interfaces/interface.ilTableFilterItem.php");
6 include_once(
"./Services/Form/classes/class.ilFormPropertyGUI.php");
24 public function __construct($a_title, $a_postvar, $a_explorer_gui, $a_multi =
false)
28 $this->lng = $DIC->language();
29 $lng = $DIC->language();
31 $this->multi_nodes = $a_multi;
32 $this->explorer_gui = $a_explorer_gui;
46 return "handleExplorerCommand";
56 foreach ($val as $v) {
57 $this->explorer_gui->setNodeOpen($v);
58 $this->explorer_gui->setNodeSelected($v);
60 } elseif ($val !=
"") {
61 $this->explorer_gui->setNodeOpen($val);
62 $this->explorer_gui->setNodeSelected($val);
64 $this->explorer_gui->handleCommand();
82 if ($this->multi_nodes && !is_array($a_value)) {
83 if ($a_value !==
false) {
84 $this->value = array($a_value);
86 $this->value = array();
89 $this->value = $a_value;
123 if ($this->multi_nodes) {
150 public function render($a_mode =
"property_form")
154 include_once(
"./Services/YUI/classes/class.ilYuiUtil.php");
156 $GLOBALS[
"tpl"]->addJavascript(
"./Services/UIComponent/Explorer2/js/Explorer2.js");
157 $GLOBALS[
"tpl"]->addJavascript(
"./Services/UIComponent/Modal/js/Modal.js");
159 $tpl =
new ilTemplate(
"tpl.prop_expl_select.html",
true,
true,
"Services/UIComponent/Explorer2");
161 if ($a_mode !=
"property_form") {
162 $tpl->touchBlock(
"tiny_presentation");
167 if (is_array($val)) {
168 $val_txt = $sep =
"";
169 foreach ($val as $v) {
170 $tpl->setCurrentBlock(
"node_hid");
172 $tpl->setVariable(
"HID_VAL", $v);
173 $tpl->parseCurrentBlock();
176 $this->explorer_gui->setNodeOpen($v);
177 $this->explorer_gui->setNodeSelected($v);
179 $tpl->setVariable(
"VAL_TXT", $val_txt);
180 } elseif ($val !=
"") {
181 $tpl->setCurrentBlock(
"node_hid");
183 $tpl->setVariable(
"HID_VAL", $val);
184 $tpl->parseCurrentBlock();
186 $this->explorer_gui->setNodeOpen($val);
187 $this->explorer_gui->setNodeSelected($val);
196 $tpl->setCurrentBlock(
"txt_select");
197 $tpl->setVariable(
"TXT_SELECT",
$lng->txt(
"select"));
199 $tpl->parseCurrentBlock();
201 $tpl->setCurrentBlock(
"txt_reset");
202 $tpl->setVariable(
"TXT_RESET",
$lng->txt(
"reset"));
204 $tpl->parseCurrentBlock();
207 $tpl->setVariable(
"EXPL", $this->explorer_gui->getHTML());
211 include_once
"Services/UIComponent/Button/classes/class.ilLinkButton.php";
214 $button->setCaption(
"select");
215 $button->addCSSClass(
"ilExplSelectInputButS");
216 $button->setOmitPreventDoubleSubmission(
true);
217 $top_tb->addStickyItem($button);
220 $button->setCaption(
"cancel");
221 $button->addCSSClass(
"ilExplSelectInputButC");
222 $button->setOmitPreventDoubleSubmission(
true);
223 $top_tb->addStickyItem($button);
226 $tpl->setVariable(
"TOP_TB", $top_tb->getHTML());
227 $tpl->setVariable(
"BOT_TB", $top_tb->getHTML());
261 $a_tpl->setCurrentBlock(
"prop_generic");
262 $a_tpl->setVariable(
"PROP_GENERIC", $this->
render());
263 $a_tpl->parseCurrentBlock();
271 $html = $this->
render(
"table_filter");
Interface for property form input GUI classes that can be used in table filters.
if(isset($_FILES['img_file']['size']) && $_FILES['img_file']['size'] > 0) $tpl
static initPanel($a_resize=false, ilGlobalTemplateInterface $a_main_tpl=null)
Init yui panel.
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
disabled()
Example showing how to plug a disabled checkbox into a form.
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
__construct(Container $dic, ilPlugin $plugin)