37 'ilAssQuestionFeedbackEditingGUI',
38 'ilAssQuestionHintGUI',
39 'ilObjTestSettingsGeneralGUI',
51 protected \ILIAS\HTTP\Wrapper\WrapperFactory
$wrapper;
62 $this->
lng = $DIC->language();
63 $this->
ctrl = $DIC->ctrl();
64 $this->tpl = $DIC[
"tpl"];
67 $this->wrapper = $DIC->http()->wrapper();
77 $ilCtrl = $DIC->ctrl();
82 foreach ($ilCtrl->getCallHistory() as $call) {
83 if (($call[
'mode'] ??
"") ===
'execComm') {
84 $class = $call[
'class'];
89 while ($class !=
false) {
90 if (in_array($class, self::$allowed_guis)) {
93 $class = get_parent_class($class);
105 if (!isset(self::$current_gui)) {
109 return self::$current_gui;
114 $this->config = $a_config;
132 $inactive->setInfo($lng->
txt(
'char_selector_inactive_info_' . $this->config->getContext()));
134 $inherit->setInfo($lng->
txt(
'char_selector_inherit_info_' . $this->config->getContext()));
136 $enabled->setInfo($lng->
txt(
'char_selector_enabled_info_' . $this->config->getContext()));
138 $disabled->setInfo($lng->
txt(
'char_selector_disabled_info_' . $this->config->getContext()));
141 $blocks->setInfo($lng->
txt(
'char_selector_blocks_info'));
142 $blocks->setOptions($this->config->getBlockOptions());
143 $blocks->setMulti(
true);
146 $custom_items =
new ilTextAreaInputGUI($lng->
txt(
'char_selector_custom_items'),
'char_selector_custom_items');
147 $tpl =
new ilTemplate(
"tpl.char_selector_custom_info.html",
true,
true,
"Services/UIComponent/CharSelector");
148 $tpl->setVariable(
'1', $lng->
txt(
'char_selector_custom_items_info1'));
149 $tpl->setVariable(
'2a', $lng->
txt(
'char_selector_custom_items_info2a'));
150 $tpl->setVariable(
'2b', $lng->
txt(
'char_selector_custom_items_info2b'));
151 $tpl->setVariable(
'3a', $lng->
txt(
'char_selector_custom_items_info3a'));
152 $tpl->setVariable(
'3b', $lng->
txt(
'char_selector_custom_items_info3b'));
153 $tpl->setVariable(
'4a', $lng->
txt(
'char_selector_custom_items_info4a'));
154 $tpl->setVariable(
'4b', $lng->
txt(
'char_selector_custom_items_info4b'));
155 $tpl->setVariable(
'5a', $lng->
txt(
'char_selector_custom_items_info5a'));
156 $tpl->setVariable(
'5b', $lng->
txt(
'char_selector_custom_items_info5b'));
157 $tpl->setVariable(
'6a', $lng->
txt(
'char_selector_custom_items_info6a'));
158 $tpl->setVariable(
'6b', $lng->
txt(
'char_selector_custom_items_info6b'));
159 $custom_items->
setInfo($tpl->get());
160 $enabled->addSubItem($custom_items);
162 switch ($this->config->getContext()) {
164 $availability->addOption($inactive);
166 $availability->addOption($disabled);
167 $a_form->
addItem($availability);
172 $availability->addOption($inherit);
174 $availability->addOption($disabled);
175 $a_form->
addItem($availability);
186 $a_form->
getItemByPostVar(
'char_selector_availability')->setValue($this->config->getAvailability());
187 $a_form->
getItemByPostVar(
'char_selector_blocks')->setValue($this->config->getAddedBlocks());
188 $a_form->
getItemByPostVar(
'char_selector_custom_items')->setValue($this->config->getCustomItems());
197 $this->config->setAvailability((
int) $a_form->
getInput(
'char_selector_availability'));
198 $this->config->setAddedBlocks((array) $a_form->
getInput(
'char_selector_blocks'));
199 $this->config->setCustomItems((
string) $a_form->
getInput(
'char_selector_custom_items'));
214 if ($this->added_to_page) {
222 $this->jsconfig->pages = $this->config->getCharPages();
223 $this->jsconfig->ajax_url = $ilCtrl->getLinkTargetByClass(
"ilcharselectorgui",
"saveState",
"",
true);
225 $this->jsconfig->current_page = (
int)
ilSession::get(
'char_selector_current_page');
226 $this->jsconfig->current_subpage = (
int)
ilSession::get(
'char_selector_current_subpage');
230 $this->jstexts->page = $lng->
txt(
'page');
232 $this->jstexts->open = $lng->
txt(
'char_selector_menu_open');
233 $this->jstexts->close = $lng->
txt(
'char_selector_menu_close');
241 $tpl->
addJavaScript(
'./Services/UIComponent/CharSelector/js/ilCharSelector.js');
244 'il.CharSelector.init(' .
245 json_encode($this->jsconfig, JSON_THROW_ON_ERROR) .
',' .
246 json_encode($this->jstexts, JSON_THROW_ON_ERROR) .
')' 248 $this->added_to_page =
true;
257 $tpl =
new ilTemplate(
"tpl.char_selector_panel.html",
true,
true,
"Services/UIComponent/CharSelector");
259 if (count($this->jsconfig->pages) > 1) {
261 foreach ($this->jsconfig->pages as $page) {
275 return '<script type="text/html" id="ilCharSelectorTemplate">' . $tpl->
get() .
'</script>';
286 $int = $this->
refinery->kindlyTo()->int();
288 'char_selector_open',
289 $this->wrapper->query()->retrieve(
"open", $int)
292 'char_selector_current_page',
293 $this->wrapper->query()->retrieve(
"current_page", $int)
296 'char_selector_current_subpage',
297 $this->wrapper->query()->retrieve(
"current_subpage", $int)
301 echo json_encode(array(
304 'current_subpage' =>
ilSession::get(
'char_selector_current_subpage'),
305 ), JSON_THROW_ON_ERROR);
312 $cmd = $ilCtrl->
getCmd(
"saveState");
static get(string $a_var)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _isAllowed()
Check if the CharSelector is allowed for the current GUI.
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
touchBlock(string $block)
overwrites ITX::touchBlock.
const CONTEXT_NONE
Configuration contexts.
static _getCurrentConfig(ilObjTest $a_test_obj=null)
Get the configuration that should be used for the current selector.
getCmd(string $fallback_command=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
addLightbox(string $a_html, string $a_id)
Add a lightbox html to the template.
getSelectorHTML()
Get the HTML code of the selector panel.
static array $allowed_guis
list of command classes for which the char selector is allowed (can also be a parent class of the act...
get(string $part=self::DEFAULT_BLOCK)
Renders the given block and returns the html string.
loadLanguageModule(string $a_module)
Load language module.
setVariable(string $variable, $value='')
Sets the given variable to the given value.
static getStyleSheetLocation(string $mode="output", string $a_css_name="", string $a_css_location="")
get full style sheet file name (path inclusive) of current user
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const INACTIVE
Availabilities INACTIVE/INHERIT corresponds to an unconfigured selector (no database entries) ...
Interface ilCtrlBaseClassInterface describes ilCtrl base classes.
ILIAS Refinery Factory $refinery
addToPage()
Adds the the character selector to the ilias page Initializes the selector according to the state sav...
getFormValues(ilPropertyFormGUI $a_form)
Set the configuration based on the values of a property form.
ILIAS HTTP Wrapper WrapperFactory $wrapper
setConfig(ilCharSelectorConfig $a_config)
addFormProperties(ilPropertyFormGUI $a_form)
add the configuration elements to a property form
static ilCharSelectorGUI $current_gui
static _getCurrentGUI(ilObjTest $a_test_obj=null)
Get the GUI that is used for the currently available selector (other GUI instances may exist for conf...
addJavaScript(string $a_js_file, bool $a_add_version_parameter=true, int $a_batch=2)
Add a javascript file that should be included in the header.
addOnLoadCode(string $a_code, int $a_batch=2)
Add on load code.
setCurrentBlock(string $part=self::DEFAULT_BLOCK)
Sets the template to the given block.
__construct(Container $dic, ilPlugin $plugin)
saveState()
Save the selector panel state in the user session (This keeps the panel state between page moves) ...
This class represents a text area property in a property form.
parseCurrentBlock(string $block_name=self::DEFAULT_BLOCK)
Parses the given block.
setFormValues(ilPropertyFormGUI $a_form)
Set the values in a property form based on the configuration.
static set(string $a_var, $a_val)
Set a value.
ilGlobalTemplateInterface $tpl
ilCharSelectorConfig $config
addCss(string $a_css_file, string $media="screen")
Add a css file that should be included in the header.