13 include_once(
'Services/Table/classes/class.ilTable2GUI.php');
14 include_once(
'Services/AdvancedMetaData/classes/class.ilAdvancedMDFieldDefinition.php');
35 parent::__construct($a_parent_obj,$a_parent_cmd);
37 $this->
addColumn($this->lng->txt(
'title'),
'title');
38 $this->
addColumn($this->lng->txt(
'md_fields'),
'fields');
39 $this->
addColumn($this->lng->txt(
'md_adv_active'),
'active');
40 $this->
addColumn($this->lng->txt(
'md_obj_types'),
'obj_types');
41 $this->
addColumn($this->lng->txt(
'actions'));
43 $this->
setFormAction($this->ctrl->getFormAction($a_parent_obj));
44 $this->
setRowTemplate(
"tpl.show_records_row.html",
"Services/AdvancedMetaData");
60 $this->tpl->setCurrentBlock(
'ass_obj_types');
61 $this->tpl->setVariable(
'VAL_OBJ_TYPE', $obj_type[
"text"]);
62 $this->tpl->setVariable(
'ASS_ID',$a_set[
'id']);
63 $this->tpl->setVariable(
'ASS_NAME',$obj_type[
"obj_type"].
":".$obj_type[
"sub_type"]);
64 foreach ($a_set[
'obj_types'] as
$t)
66 if ($obj_type[
"obj_type"] == $t[
"obj_type"] &&
67 $obj_type[
"sub_type"] == $t[
"sub_type"])
69 $this->tpl->setVariable(
'ASS_CHECKED',
'checked="checked"');
72 $this->tpl->parseCurrentBlock();
74 $this->tpl->setVariable(
'VAL_ID',$a_set[
'id']);
75 $this->tpl->setVariable(
'VAL_TITLE',$a_set[
'title']);
76 if(strlen($a_set[
'description']))
78 $this->tpl->setVariable(
'VAL_DESCRIPTION',$a_set[
'description']);
83 $this->tpl->setVariable(
'TXT_FIELDS',$this->lng->txt(
'md_adv_no_fields'));
85 foreach($defs as $definition_obj)
87 $this->tpl->setCurrentBlock(
'field_entry');
88 $this->tpl->setVariable(
'FIELD_NAME',$definition_obj->getTitle());
89 $this->tpl->parseCurrentBlock();
92 $this->tpl->setVariable(
'ACTIVE_CHECKED',$a_set[
'active'] ?
' checked="checked" ' :
'');
93 $this->tpl->setVariable(
'ACTIVE_ID',$a_set[
'id']);
95 $this->ctrl->setParameter($this->parent_obj,
'record_id',$a_set[
'id']);
96 $this->tpl->setVariable(
'EDIT_LINK',$this->ctrl->getLinkTarget($this->parent_obj,
'editRecord'));
97 $this->tpl->setVariable(
'TXT_EDIT_RECORD',$this->lng->txt(
'edit'));
109 foreach($a_records as $record)
111 $tmp_arr[
'id'] = $record->getRecordId();
112 $tmp_arr[
'active'] = $record->isActive();
113 $tmp_arr[
'title'] = $record->getTitle();
114 $tmp_arr[
'description'] = $record->getDescription();
115 $tmp_arr[
'fields'] = array();
116 $tmp_arr[
'obj_types'] = $record->getAssignedObjectTypes();
118 $records_arr[] = $tmp_arr;
120 $this->
setData($records_arr ? $records_arr : array());
static _getDefinitionsByRecordId($a_record_id)
get definitions
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
parseRecords($a_records)
Parse records.
__construct($a_parent_obj, $a_parent_cmd='')
Constructor.
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
addColumn($a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="")
Add a column to the header.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
static _getAssignableObjectTypes($a_include_text=false)
Get assignable object type.
setFormAction($a_form_action)
Set Form action parameter.