ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilAdvancedMDRecordTableGUI.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
13 include_once('Services/Table/classes/class.ilTable2GUI.php');
14 include_once('Services/AdvancedMetaData/classes/class.ilAdvancedMDFieldDefinition.php');
15 
17 {
18  protected $lng = null;
19  protected $ctrl;
20 
28  public function __construct($a_parent_obj,$a_parent_cmd = '')
29  {
30  global $lng,$ilCtrl;
31 
32  $this->lng = $lng;
33  $this->ctrl = $ilCtrl;
34 
35  parent::__construct($a_parent_obj,$a_parent_cmd);
36  $this->addColumn('','',1);
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'));
42 
43  $this->setFormAction($this->ctrl->getFormAction($a_parent_obj));
44  $this->setRowTemplate("tpl.show_records_row.html","Services/AdvancedMetaData");
45  $this->setDefaultOrderField("title");
46  $this->setDefaultOrderDirection("desc");
47  }
48 
56  public function fillRow($a_set)
57  {
58  foreach(ilAdvancedMDRecord::_getAssignableObjectTypes(true) as $obj_type)
59  {
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)
65  {
66  if ($obj_type["obj_type"] == $t["obj_type"] &&
67  $obj_type["sub_type"] == $t["sub_type"])
68  {
69  $this->tpl->setVariable('ASS_CHECKED','checked="checked"');
70  }
71  }
72  $this->tpl->parseCurrentBlock();
73  }
74  $this->tpl->setVariable('VAL_ID',$a_set['id']);
75  $this->tpl->setVariable('VAL_TITLE',$a_set['title']);
76  if(strlen($a_set['description']))
77  {
78  $this->tpl->setVariable('VAL_DESCRIPTION',$a_set['description']);
79  }
81  if(!count($defs))
82  {
83  $this->tpl->setVariable('TXT_FIELDS',$this->lng->txt('md_adv_no_fields'));
84  }
85  foreach($defs as $definition_obj)
86  {
87  $this->tpl->setCurrentBlock('field_entry');
88  $this->tpl->setVariable('FIELD_NAME',$definition_obj->getTitle());
89  $this->tpl->parseCurrentBlock();
90  }
91 
92  $this->tpl->setVariable('ACTIVE_CHECKED',$a_set['active'] ? ' checked="checked" ' : '');
93  $this->tpl->setVariable('ACTIVE_ID',$a_set['id']);
94 
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'));
98  }
99 
107  public function parseRecords($a_records)
108  {
109  foreach($a_records as $record)
110  {
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();
117 
118  $records_arr[] = $tmp_arr;
119  }
120  $this->setData($records_arr ? $records_arr : array());
121  }
122 
123 }
124 
125 
126 ?>
static _getDefinitionsByRecordId($a_record_id)
get definitions
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
__construct($a_parent_obj, $a_parent_cmd='')
Constructor.
global $ilCtrl
Definition: ilias.php:18
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
Class ilTable2GUI.
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.