1 <?php declare(strict_types=1);
39 $this->containerTemplate = $DIC[
'tpl'];
40 $this->
user = $DIC[
'ilUser'];
42 $this->
setId(
'buddy_system_tbl');
45 $this->lng->loadLanguageModule(
'buddysystem');
47 $this->hasAccessToMailSystem = $DIC->rbac()->system()->checkAccess(
52 $chatSettings =
new ilSetting(
'chatroom');
53 $this->isChatEnabled = (bool) $chatSettings->get(
"chat_enabled",
false);
58 $this->
setTitle($this->lng->txt(
'buddy_tbl_title_relations'));
60 if ($this->hasAccessToMailSystem || $this->isChatEnabled) {
63 if ($this->hasAccessToMailSystem) {
66 if ($this->isChatEnabled) {
67 $this->
addMultiCommand(
'inviteToChat', $this->lng->txt(
'invite_to_chat'));
71 $this->
addColumn($this->lng->txt(
'name'),
'public_name');
72 $this->
addColumn($this->lng->txt(
'login'),
'login');
75 $this->
setRowTemplate(
'tpl.buddy_system_relation_table_row.html',
'Services/Contact/BuddySystem');
76 $this->
setFormAction($this->ctrl->getFormAction($a_parent_obj, $a_parent_cmd));
93 $this->lng->txt(
'buddy_tbl_filter_state'),
94 self::STATE_FILTER_ELM_ID
99 foreach ($state_factory->getValidStates() as $state) {
100 if ($state->isInitial()) {
104 $state_filter_mapper = $state_factory->getTableFilterStateMapper($state);
105 $options += $state_filter_mapper->optionsForState();
107 $relations_state_selection->
setOptions([
'' => $this->lng->txt(
'please_choose')] + $options);
109 $relations_state_selection->readFromSession();
110 $this->
filter[
'relation_state_type'] = $relations_state_selection->getValue();
112 $public_name =
new ilTextInputGUI($this->lng->txt(
'name'),
'public_name');
114 $public_name->readFromSession();
115 $this->
filter[
'public_name'] = $public_name->getValue();
123 public function applyFilterValue(
string $filterKey, $value) :
void 126 foreach ($filterItems as $item) {
128 if ($item->getPostVar() === $filterKey) {
129 $item->setValueByArray([$filterKey => $value]);
130 $item->writeToSession();
149 $state_filter = (string) $this->
filter[self::STATE_FILTER_ELM_ID];
151 $relations = $relations->filter(
function (
ilBuddySystemRelation $relation) use ($state_filter, $state_factory) :
bool {
152 $state_filter_mapper = $state_factory->getTableFilterStateMapper($relation->
getState());
153 return $state_filter ===
'' || $state_filter_mapper->filterMatchesRelation($state_filter, $relation);
159 $logins = array_map(
function ($value) {
161 preg_match_all(
'/\[([^\[]+?)\]/', $value, $matches);
163 is_array($matches) &&
164 isset($matches[1]) &&
165 is_array($matches[1]) &&
166 isset($matches[1][count($matches[1]) - 1])
167 ) ? $matches[1][count($matches[1]) - 1] :
'';
170 $public_name_query = (string) $this->
filter[
'public_name'];
177 $usrId = $relations->getKey($relation);
180 0 === ilStr::strlen($public_name_query) ||
182 ilStr::strtolower($public_names[$usrId]),
183 ilStr::strtolower($public_name_query)
185 ilStr::strpos(ilStr::strtolower($logins[$usrId]), ilStr::strtolower($public_name_query)) !== false
188 if (!$hasMatchingName) {
195 foreach ($relations->toArray() as $usr_id => $relation) {
198 'public_name' => $public_names[$usr_id],
199 'login' => $logins[$usr_id]
211 if ($this->hasAccessToMailSystem) {
216 if ((!$this->
user->isAnonymous() && $public_profile ===
'y') || $public_profile ===
'g') {
217 $this->ctrl->setParameterByClass(
'ilpublicuserprofilegui',
'user', $a_set[
'usr_id']);
218 $profile_target = $this->ctrl->getLinkTargetByClass(
'ilpublicuserprofilegui',
'getHTML');
219 $a_set[
'profile_link'] = $profile_target;
220 $a_set[
'linked_public_name'] = $a_set[
'public_name'];
222 $a_set[
'profile_link_login'] = $profile_target;
223 $a_set[
'linked_login'] = $a_set[
'login'];
225 $a_set[
'unlinked_public_name'] = $a_set[
'public_name'];
226 $a_set[
'unlinked_login'] = $a_set[
'login'];
230 parent::fillRow($a_set);
239 'tpl.buddy_system_relation_table_listener.html',
242 'Services/Contact/BuddySystem' 244 $listener_tpl->setVariable(
'TABLE_ID', $this->
getId());
245 $listener_tpl->setVariable(
'FILTER_ELM_ID', self::STATE_FILTER_ELM_ID);
246 $listener_tpl->setVariable(
251 return parent::render() . $listener_tpl->get();
static getInstance(?ilLanguage $lng=null)
setExternalSorting($a_val)
Set external sorting.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
static getInstanceByGlobalUser()
setExternalSegmentation($a_val)
Set external segmentation.
addFilterItem($a_input_item, $a_optional=false)
Add filter item.
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
setResetCommand($a_val, $a_caption=null)
Set reset filter command.
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.
addMultiCommand($a_cmd, $a_text)
Add Command button.
static getNamePresentation( $a_user_id, $a_user_image=false, $a_profile_link=false, $a_profile_back_link="", $a_force_first_lastname=false, $a_omit_login=false, $a_sortable=true, $a_return_data_array=false, $a_ctrl_path="ilpublicuserprofilegui")
Default behaviour is:
setRowTemplate($a_template, $a_template_dir="")
Set row template.
getNoEntriesText()
Get text for an empty table.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
Class ilBuddySystemRelation.
__construct(Container $dic, ilPlugin $plugin)
static _lookupPref($a_usr_id, $a_keyword)
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.
static getMailObjectRefId()
Determines the reference id of the mail object and stores this information in a local cache variable...
static _lookupActive($a_usr_id)
Check user account active.
const STATE_FILTER_ELM_ID
getFilterItems($a_optionals=false)
Get filter items.
static formCheckbox($checked, $varname, $value, $disabled=false)
??? public
__construct($a_parent_obj, $a_parent_cmd)
setFilterCommand($a_val, $a_caption=null)
Set filter command.