32 include_once(
'Services/Table/classes/class.ilTable2GUI.php');
33 include_once(
'Services/AdvancedMetaData/classes/class.ilAdvancedMDFieldDefinition.php');
54 $this->permissions = $a_permissions;
55 $this->may_edit_pos = (bool) $a_may_edit_pos;
57 parent::__construct($a_parent_obj, $a_parent_cmd);
59 $this->
addColumn($this->lng->txt(
'position'),
'position',
"5%");
60 $this->
addColumn($this->lng->txt(
'title'),
'title',
"30%");
61 $this->
addColumn($this->lng->txt(
'md_adv_field_fields'),
'fields',
"35%");
62 $this->
addColumn($this->lng->txt(
'options'),
'obj_types',
"30%");
64 $this->
setFormAction($this->ctrl->getFormAction($a_parent_obj));
65 $this->
setRowTemplate(
"tpl.edit_fields_row.html",
"Services/AdvancedMetaData");
67 #$this->setDefaultOrderDirection("desc"); 79 $this->tpl->setVariable(
'TXT_SEARCHABLE', $this->lng->txt(
'md_adv_searchable'));
80 $this->tpl->setVariable(
'ASS_ID', $a_set[
'id']);
81 if ($a_set[
'searchable']) {
82 $this->tpl->setVariable(
'ASS_CHECKED',
'checked="checked"');
85 !(
bool) $a_set[
'supports_search']) {
86 $this->tpl->setVariable(
'ASS_DISABLED',
' disabled="disabled"');
89 $this->tpl->setVariable(
'VAL_POS', $a_set[
'position']);
90 if (!$this->may_edit_pos) {
91 $this->tpl->setVariable(
'POS_DISABLED',
' disabled="disabled"');
94 $this->tpl->setVariable(
'VAL_ID', $a_set[
'id']);
95 $this->tpl->setVariable(
'VAL_TITLE', $a_set[
'title']);
96 if (strlen($a_set[
'description'])) {
97 $this->tpl->setVariable(
'VAL_DESCRIPTION', $a_set[
'description']);
100 $this->tpl->setVariable(
'FIELD_TYPE', $a_set[
'type']);
102 foreach ((
array) $a_set[
'properties'] as
$key => $value) {
103 $this->tpl->setCurrentBlock(
'field_value');
104 $this->tpl->setVariable(
'FIELD_KEY',
$key);
105 $this->tpl->setVariable(
'FIELD_VAL', $value);
106 $this->tpl->parseCurrentBlock();
110 $this->ctrl->setParameter($this->parent_obj,
'field_id', $a_set[
'id']);
111 $this->tpl->setVariable(
'EDIT_LINK', $this->ctrl->getLinkTarget($this->parent_obj,
'editField'));
112 $this->tpl->setVariable(
'TXT_EDIT_RECORD', $this->lng->txt(
'edit'));
127 foreach ($a_definitions as $definition) {
128 $tmp_arr[
'position'] = ++
$counter*10;
129 $tmp_arr[
'id'] = $definition->getFieldId();
130 $tmp_arr[
'title'] = $definition->getTitle();
131 $tmp_arr[
'description'] = $definition->getDescription();
132 $tmp_arr[
'fields'] =
array();
133 $tmp_arr[
'searchable'] = $definition->isSearchable();
134 $tmp_arr[
'type'] = $this->lng->txt($definition->getTypeTitle());
135 $tmp_arr[
'properties'] = $definition->getFieldDefinitionForTableGUI();
136 $tmp_arr[
'supports_search'] = $definition->isSearchSupported();
138 $tmp_arr[
'perm'] = $this->permissions->hasPermissions(
140 $definition->getFieldId(),
148 $defs_arr[] = $tmp_arr;
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
const ACTION_FIELD_EDIT_PROPERTY
parseDefinitions($a_definitions)
parese field data
const SUBACTION_FIELD_SEARCHABLE
Advanced metadata permission helper.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
Create styles array
The data for the language used.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
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.
__construct($a_parent_obj, $a_parent_cmd='', ilAdvancedMDPermissionHelper $a_permissions, $a_may_edit_pos)
Constructor.