4 include_once
'./Services/Table/classes/class.ilTable2GUI.php';
20 public function __construct($a_parent_obj, $a_parent_cmd =
"")
23 $this->
setId(
'tbl_didactic_tpl_settings');
33 $ilCtrl = $DIC[
'ilCtrl'];
35 $ilAccess = $DIC[
'ilAccess'];
38 $lng->loadLanguageModule(
'search');
39 $lng->loadLanguageModule(
'meta');
40 $this->
addColumn($this->lng->txt(
'icon'),
'',
'5%');
41 $this->
addColumn($this->lng->txt(
'search_title_description'),
'title',
'30%');
42 $this->
addColumn($this->lng->txt(
'didactic_applicable_for'),
'applicable',
'20%');
43 $this->
addColumn($this->lng->txt(
'didactic_scope'),
'scope',
'20%');
44 $this->
addColumn($this->lng->txt(
'active'),
'active',
'10%');
45 $this->
addColumn($this->lng->txt(
'actions'),
'',
'15%');
47 $this->
setTitle($this->lng->txt(
'didactic_available_templates'));
49 if ($ilAccess->checkAccess(
'write',
'', $_REQUEST[
"ref_id"])) {
50 $this->
addMultiCommand(
'activateTemplates', $this->lng->txt(
'activate'));
51 $this->
addMultiCommand(
'deactivateTemplates', $this->lng->txt(
'deactivate'));
59 $this->
setRowTemplate(
'tpl.didactic_template_overview_row.html',
'Services/DidacticTemplate');
62 $this->
setFormAction($ilCtrl->getFormAction($this->getParentObject()));
72 $tpls->readInactive();
73 $templates = $filter->
filter($tpls->getTemplates());
76 foreach ($templates as
$tpl) {
78 $data[$counter][
'id'] = $tpl->getId();
79 $data[$counter][
'icon'] = $tpl->getIconHandler()->getAbsolutePath();
80 $data[$counter][
'title'] = $tpl->getPresentationTitle();
81 $data[$counter][
'description'] = $tpl->getPresentationDescription();
82 $data[$counter][
'info'] = $tpl->getInfo();
83 $data[$counter][
'enabled'] = (int) $tpl->isEnabled();
84 $data[$counter][
'assignments'] = $tpl->getAssignments();
87 foreach ($tpl->getAssignments() as $obj_type) {
88 $atxt .= ($this->lng->txt(
'objs_' . $obj_type) .
'<br/>');
90 $data[$counter][
'applicable'] = $atxt;
91 $data[$counter][
'automatic_generated'] = $tpl->isAutoGenerated();
92 $data[$counter][
'scope'] = (array) $tpl->getEffectiveFrom();
108 $ilCtrl = $DIC[
'ilCtrl'];
109 $ilAccess = $DIC[
'ilAccess'];
111 if ($ilAccess->checkAccess(
'write',
'', $_REQUEST[
"ref_id"])) {
112 $this->tpl->setVariable(
'VAL_ID', $set[
'id']);
115 $this->tpl->setVariable(
'VAL_TITLE', $set[
'title']);
116 $this->tpl->setVariable(
'VAL_DESC', $set[
'description']);
118 if (strlen($set[
'icon'])) {
119 $this->tpl->setVariable(
'ICON_SRC', $set[
'icon']);
120 foreach ((array) $set[
'assignments'] as $obj_type) {
121 $this->tpl->setVariable(
'ICON_ALT', $this->lng->txt(
'objs_' . $obj_type));
125 foreach ((array) explode(
"\n", $set[
'info']) as $info) {
126 $trimmed_info = trim($info);
128 $this->tpl->setCurrentBlock(
'info');
129 $this->tpl->setVariable(
'VAL_INFO', $trimmed_info);
130 $this->tpl->parseCurrentBlock();
134 if ($set[
'automatic_generated']) {
135 $this->tpl->setVariable(
"VAL_AUTOMATIC_GENERATED", $this->lng->txt(
"didactic_auto_generated"));
139 $this->tpl->setVariable(
145 $this->tpl->setVariable(
148 $this->lng->txt(
'active') :
149 $this->lng->txt(
'inactive')
154 foreach ((array) $set[
'assignments'] as $obj_type) {
155 $atxt .= ($this->lng->txt(
'objs_' . $obj_type) .
'<br/>');
157 $this->tpl->setVariable(
'VAL_APPLICABLE', $atxt);
159 $ilCtrl->setParameterByClass(
165 if (count($set[
'scope'])) {
166 $this->tpl->setCurrentBlock(
'scope_txt');
167 $this->tpl->setVariable(
'LOCAL_OR_GLOBAL', $this->lng->txt(
'didactic_scope_list_header'));
168 $this->tpl->parseCurrentBlock();
170 foreach ($set[
'scope'] as $ref_id) {
171 $this->tpl->setCurrentBlock(
'scope_entry');
174 $this->tpl->parseCurrentBlock();
177 $this->tpl->setCurrentBlock(
'scope_txt');
178 $this->tpl->setVariable(
'LOCAL_OR_GLOBAL', $set[
'local'] ? $this->lng->txt(
'meta_local') : $this->lng->txt(
'meta_global'));
179 $this->tpl->parseCurrentBlock();
183 if ($ilAccess->checkAccess(
'write',
'', $_REQUEST[
"ref_id"])) {
184 include_once(
"./Services/UIComponent/AdvancedSelectionList/classes/class.ilAdvancedSelectionListGUI.php");
186 $actions->setId($set[
'id']);
187 $actions->setListTitle($this->lng->txt(
"actions"));
190 $this->lng->txt(
'settings'),
192 $ilCtrl->getLinkTargetByClass(get_class($this->
getParentObject()),
'editTemplate')
197 $this->lng->txt(
'copy'),
199 $ilCtrl->getLinkTargetByClass(get_class($this->
getParentObject()),
'copyTemplate')
202 if (!$set[
'automatic_generated']) {
205 $this->lng->txt(
'didactic_do_export'),
207 $ilCtrl->getLinkTargetByClass(get_class($this->
getParentObject()),
'exportTemplate')
210 $this->tpl->setVariable(
'ACTION_DROPDOWN', $actions->getHTML());
211 } elseif (!$set[
'automatic_generated']) {
214 $this->tpl->setCurrentBlock(
'action_link');
215 $this->tpl->setVariable(
217 $ilCtrl->getLinkTargetByClass(get_class($this->
getParentObject()),
'exportTemplate')
219 $this->tpl->setVariable(
'A_TEXT', $this->lng->txt(
'didactic_do_export'));
220 $this->tpl->parseCurrentBlock();
222 $this->tpl->touchBlock(
'action_link');
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
Description of ilDidacticTemplateSettingsTableGUI.
static getInstance()
Get singelton instance.
__construct($a_parent_obj, $a_parent_cmd="")
Constructor.
static _lookupTitle($a_id)
lookup object title
getParentObject()
Get parent object.
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
setSelectAllCheckbox($a_select_all_checkbox, $a_select_all_on_top=false)
Set the name of the checkbox that should be toggled with a select all button.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
static _lookupObjId($a_id)
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.
__construct(Container $dic, ilPlugin $plugin)
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.
parse(ilDidacticTemplateSettingsTableFilter $filter)
Parse didactic templates.
static _getLink($a_ref_id, $a_type='', $a_params=array(), $append="")