ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilAdvancedMDFieldTableGUI.php
Go to the documentation of this file.
1 <?php
2 /*
3  +-----------------------------------------------------------------------------+
4  | ILIAS open source |
5  +-----------------------------------------------------------------------------+
6  | Copyright (c) 1998-2006 ILIAS open source, University of Cologne |
7  | |
8  | This program is free software; you can redistribute it and/or |
9  | modify it under the terms of the GNU General Public License |
10  | as published by the Free Software Foundation; either version 2 |
11  | of the License, or (at your option) any later version. |
12  | |
13  | This program is distributed in the hope that it will be useful, |
14  | but WITHOUT ANY WARRANTY; without even the implied warranty of |
15  | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16  | GNU General Public License for more details. |
17  | |
18  | You should have received a copy of the GNU General Public License |
19  | along with this program; if not, write to the Free Software |
20  | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21  +-----------------------------------------------------------------------------+
22 */
23 
32 include_once('Services/Table/classes/class.ilTable2GUI.php');
33 include_once('Services/AdvancedMetaData/classes/class.ilAdvancedMDFieldDefinition.php');
34 
36 {
37  protected $permissions; // [ilAdvancedMDPermissionHelper]
38  protected $may_edit_pos; // [bool]
39 
48  public function __construct($a_parent_obj,$a_parent_cmd = '', ilAdvancedMDPermissionHelper $a_permissions, $a_may_edit_pos)
49  {
50  global $lng,$ilCtrl;
51 
52  $this->lng = $lng;
53  $this->ctrl = $ilCtrl;
54  $this->permissions = $a_permissions;
55  $this->may_edit_pos = (bool)$a_may_edit_pos;
56 
57  parent::__construct($a_parent_obj,$a_parent_cmd);
58  $this->addColumn('','f',1);
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%");
63 
64  $this->setFormAction($this->ctrl->getFormAction($a_parent_obj));
65  $this->setRowTemplate("tpl.edit_fields_row.html","Services/AdvancedMetaData");
66  $this->setDefaultOrderField("position");
67  #$this->setDefaultOrderDirection("desc");
68  }
69 
77  public function fillRow($a_set)
78  {
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  {
83  $this->tpl->setVariable('ASS_CHECKED','checked="checked"');
84  }
86  {
87  $this->tpl->setVariable('ASS_DISABLED',' disabled="disabled"');
88  }
89 
90  $this->tpl->setVariable('VAL_POS',$a_set['position']);
91  if(!$this->may_edit_pos)
92  {
93  $this->tpl->setVariable('POS_DISABLED',' disabled="disabled"');
94  }
95 
96  $this->tpl->setVariable('VAL_ID',$a_set['id']);
97  $this->tpl->setVariable('VAL_TITLE',$a_set['title']);
98  if(strlen($a_set['description']))
99  {
100  $this->tpl->setVariable('VAL_DESCRIPTION',$a_set['description']);
101  }
102 
103  $this->tpl->setVariable('FIELD_TYPE',$a_set['type']);
104 
105  foreach((array)$a_set['properties'] as $key => $value)
106  {
107  $this->tpl->setCurrentBlock('field_value');
108  $this->tpl->setVariable('FIELD_KEY',$key);
109  $this->tpl->setVariable('FIELD_VAL',$value);
110  $this->tpl->parseCurrentBlock();
111  }
112 
114  {
115  $this->ctrl->setParameter($this->parent_obj,'field_id',$a_set['id']);
116  $this->tpl->setVariable('EDIT_LINK',$this->ctrl->getLinkTarget($this->parent_obj,'editField'));
117  $this->tpl->setVariable('TXT_EDIT_RECORD',$this->lng->txt('edit'));
118  }
119  }
120 
121 
129  public function parseDefinitions($a_definitions)
130  {
131  $counter = 1;
132  foreach($a_definitions as $definition)
133  {
134  $tmp_arr['position'] = sprintf("%.1f",$counter++);
135  $tmp_arr['id'] = $definition->getFieldId();
136  $tmp_arr['title'] = $definition->getTitle();
137  $tmp_arr['description'] = $definition->getDescription();
138  $tmp_arr['fields'] = array();
139  $tmp_arr['searchable'] = $definition->isSearchable();
140  $tmp_arr['type'] = $this->lng->txt($definition->getTypeTitle());
141  $tmp_arr['properties'] = $definition->getFieldDefinitionForTableGUI();
142 
143  $tmp_arr['perm'] = $this->permissions->hasPermissions(
145  $definition->getFieldId(),
146  array(
150  ));
151 
152  $defs_arr[] = $tmp_arr;
153  }
154  $this->setData($defs_arr ? $defs_arr : array());
155  }
156 
157 }
158 
159 
160 ?>