ILIAS  release_5-0 Revision 5.0.0-1144-gc4397b1f870
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilRepositoryObjectResultTableGUI.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 include_once("./Services/Table/classes/class.ilTable2GUI.php");
5 
15 {
22  public function __construct($a_parent_obj,$a_parent_cmd,$a_allow_object_selection = false)
23  {
24  global $ilCtrl, $lng, $ilAccess, $lng;
25 
26  parent::__construct($a_parent_obj, $a_parent_cmd);
27 
28  $this->addColumn("", "", "1", true);
29  $this->addColumn($this->lng->txt("title"), "title", "80%");
30  $this->addColumn($this->lng->txt("members"), "member", "20%");
31 
32  $this->setFormAction($ilCtrl->getFormAction($this->parent_obj));
33  $this->setRowTemplate("tpl.rep_search_obj_result_row.html", "Services/Search");
34  $this->setTitle($this->lng->txt('search_results'));
35  $this->setEnableTitle(true);
36  $this->setId("group_table");
37  $this->setDefaultOrderField("title");
38  $this->setDefaultOrderDirection("asc");
39  $this->enable('select_all');
40  $this->setSelectAllCheckbox("obj[]");
41 
42  $this->addMultiCommand('listUsers', $this->lng->txt('grp_list_users'));
43  if((bool)$a_allow_object_selection)
44  {
45  $this->addMultiCommand('selectObject', $this->lng->txt('grp_select_object'));
46  }
47  }
48 
54  public function fillRow($row)
55  {
56  if($row['member'])
57  {
58  $this->tpl->setVariable('VAL_ID',$row['id']);
59  }
60  $this->tpl->setVariable('VAL_TITLE',$row['title']);
61  if(strlen($row['desc']))
62  {
63  $this->tpl->setVariable('VAL_DESC',$row['desc']);
64  }
65  $this->tpl->setVariable('VAL_MEMBER',$row['member']);
66  return true;
67  }
68 
69 
75  public function parseObjectIds($a_ids)
76  {
77  foreach($a_ids as $object_id)
78  {
79  $row = array();
80  $type = ilObject::_lookupType($object_id);
81 
82  if($type == 'role')
83  {
84  if($GLOBALS['rbacreview']->isRoleDeleted($object_id))
85  {
86  continue;
87  }
88  }
89 
90 
91  $row['title'] = ilObject::_lookupTitle($object_id);
92  $row['desc'] = ilObject::_lookupDescription($object_id);
93  $row['id'] = $object_id;
94 
95  switch($type)
96  {
97 
98  case 'crs':
99  case 'grp':
100 
101  include_once './Services/Membership/classes/class.ilParticipants.php';
103  {
104  $row['member'] = count(ilParticipants::getInstanceByObjId($object_id)->getParticipants());
105  }
106  else
107  {
108  $row['member'] = 0;
109  }
110  break;
111 
112  case 'role':
113  global $rbacreview;
114  include_once './Services/User/classes/class.ilUserFilter.php';
115  $row['member'] = count(ilUserFilter::getInstance()->filter($rbacreview->assignedUsers($object_id)));
116  break;
117  }
118 
119  $data[] = $row;
120  }
121  $this->setData($data ? $data : array());
122  }
123 
128  function numericOrdering($a_field)
129  {
130  if($a_field == "member")
131  {
132  return true;
133  }
134  return false;
135  }
136 }
137 ?>
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
static _lookupTitle($a_id)
lookup object title
static getInstance()
Singelton get instance.
__construct($a_parent_obj, $a_parent_cmd, $a_allow_object_selection=false)
Constructor.
static hasParticipantListAccess($a_obj_id, $a_usr_id=null)
Check if (current) user has access to the participant list.
setId($a_val)
Set id.
global $ilCtrl
Definition: ilias.php:18
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
Class ilTable2GUI.
$GLOBALS['ct_recipient']
addColumn($a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="")
Add a column to the header.
static _lookupDescription($a_id)
lookup object description
addMultiCommand($a_cmd, $a_text)
Add Command button.
enable($a_module_name)
enables particular modules of table
setRowTemplate($a_template, $a_template_dir="")
Set row template.
static _lookupType($a_id, $a_reference=false)
lookup object type
TableGUI class object (course,group and role) search results.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
global $lng
Definition: privfeed.php:40
setSelectAllCheckbox($a_select_all_checkbox)
Set the name of the checkbox that should be toggled with a select all button.
setEnableTitle($a_enabletitle)
Set Enable Title.
static getInstanceByObjId($a_obj_id)
Get instance by obj type.