ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
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
4include_once("./Services/Table/classes/class.ilTable2GUI.php");
5
16{
23 public function __construct($a_parent_obj, $a_parent_cmd, $a_allow_object_selection = false)
24 {
25 global $DIC;
26
27 $ilCtrl = $DIC['ilCtrl'];
28 $lng = $DIC['lng'];
29 $ilAccess = $DIC['ilAccess'];
30 $lng = $DIC['lng'];
31
32 parent::__construct($a_parent_obj, $a_parent_cmd);
33
34 $this->addColumn("", "", "1", true);
35 $this->addColumn($this->lng->txt("title"), "title", "80%");
36 $this->addColumn($this->lng->txt("members"), "member", "20%");
37
38 $this->setFormAction($ilCtrl->getFormAction($this->parent_obj));
39 $this->setRowTemplate("tpl.rep_search_obj_result_row.html", "Services/Search");
40 $this->setTitle($this->lng->txt('search_results'));
41 $this->setEnableTitle(true);
42 $this->setId("group_table");
43 $this->setDefaultOrderField("title");
44 $this->setDefaultOrderDirection("asc");
45 $this->enable('select_all');
46 $this->setSelectAllCheckbox("obj[]");
47
48 $this->addMultiCommand('listUsers', $this->lng->txt('grp_list_users'));
49 if ((bool) $a_allow_object_selection) {
50 $this->addMultiCommand('selectObject', $this->lng->txt('grp_select_object'));
51 }
52 }
53
59 public function fillRow($row)
60 {
61 if ($row['member']) {
62 $this->tpl->setVariable('VAL_ID', $row['id']);
63 }
64 $this->tpl->setVariable('VAL_TITLE', $row['title']);
65 if (strlen($row['desc'])) {
66 $this->tpl->setVariable('VAL_DESC', $row['desc']);
67 }
68 $this->tpl->setVariable('VAL_MEMBER', $row['member']);
69 return true;
70 }
71
72
78 public function parseObjectIds($a_ids)
79 {
80 foreach ($a_ids as $object_id) {
81 $row = array();
82 $type = ilObject::_lookupType($object_id);
83
84 if ($type == 'role') {
85 if ($GLOBALS['DIC']['rbacreview']->isRoleDeleted($object_id)) {
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 case 'crs':
98 case 'grp':
99
100 include_once './Services/Membership/classes/class.ilParticipants.php';
102 $row['member'] = count(ilParticipants::getInstanceByObjId($object_id)->getParticipants());
103 } else {
104 $row['member'] = 0;
105 }
106 break;
107
108 case 'role':
109 global $DIC;
110
111 $rbacreview = $DIC['rbacreview'];
112 include_once './Services/User/classes/class.ilUserFilter.php';
113 $row['member'] = count(ilUserFilter::getInstance()->filter($rbacreview->assignedUsers($object_id)));
114 break;
115 }
116
117 $data[] = $row;
118 }
119 $this->setData($data ? $data : array());
120 }
121
126 public function numericOrdering($a_field)
127 {
128 if ($a_field == "member") {
129 return true;
130 }
131 return false;
132 }
133}
An exception for terminatinating execution or to throw for unit testing.
static _lookupTitle($a_id)
lookup object title
static _lookupDescription($a_id)
lookup object description
static _lookupType($a_id, $a_reference=false)
lookup object type
static hasParticipantListAccess($a_obj_id, $a_usr_id=null)
Check if (current) user has access to the participant list.
static getInstanceByObjId($a_obj_id)
Get instance by obj type.
TableGUI class object (course,group and role) search results Used in member search.
__construct($a_parent_obj, $a_parent_cmd, $a_allow_object_selection=false)
Constructor.
Class ilTable2GUI.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
setSelectAllCheckbox($a_select_all_checkbox, $a_select_all_on_top=false)
Set the name of the checkbox that should be toggled with a select all button.
setData($a_data)
set table data @access public
setEnableTitle($a_enabletitle)
Set Enable Title.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
addMultiCommand($a_cmd, $a_text)
Add Command button.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
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.
setId($a_val)
Set id.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
enable($a_module_name)
enables particular modules of table
static getInstance()
Singelton get instance.
global $ilCtrl
Definition: ilias.php:18
$row
$GLOBALS['JPEG_Segment_Names']
Global Variable: XMP_tag_captions.
$type
global $DIC
Definition: saml.php:7