19 declare(strict_types=1);
38 $this->
access = $DIC->access();
39 $this->ui_factory = $DIC->ui()->factory();
40 $this->ui_renderer = $DIC->ui()->renderer();
45 $this->
addColumn($this->
lng->txt(
'ecs_participants'),
'participants',
"35%");
46 $this->
addColumn($this->
lng->txt(
'ecs_participants_infos'),
'infos',
"35%");
47 $this->
addColumn($this->
lng->txt(
'ecs_tbl_export'),
'export',
'5%');
48 $this->
addColumn($this->
lng->txt(
'ecs_tbl_import'),
'import',
'5%');
49 $this->
addColumn($this->
lng->txt(
'ecs_tbl_import_type'),
'type',
'10%');
51 if ($this->
access->checkAccess(
'write',
'', (
int) $_REQUEST[
"ref_id"])) {
56 $this->
setRowTemplate(
"tpl.participant_row.html",
"components/ILIAS/WebServices/ECS");
76 protected function fillRow(array $a_set): void
78 $this->tpl->setVariable(
'S_ID', $this->
getServer()->getServerId());
79 $this->tpl->setVariable(
'M_ID', $a_set[
'mid']);
80 $this->tpl->setVariable(
'VAL_ID', $this->
getServer()->getServerId() .
'_' . $a_set[
'mid']);
81 $this->tpl->setVariable(
'VAL_ORG', (
string) $a_set[
'org']);
82 $this->tpl->setVariable(
'VAL_TITLE', $a_set[
'participants']);
83 $this->tpl->setVariable(
'VAL_DESC', $a_set[
'description']);
84 $this->tpl->setVariable(
'VAL_EMAIL', $a_set[
'email']);
85 $this->tpl->setVariable(
'VAL_DNS', $a_set[
'dns']);
86 $this->tpl->setVariable(
'VAL_ABR', $a_set[
'abr']);
87 $this->tpl->setVariable(
'TXT_EMAIL', $this->
lng->txt(
'ecs_email'));
88 $this->tpl->setVariable(
'TXT_DNS', $this->
lng->txt(
'ecs_dns'));
89 $this->tpl->setVariable(
'TXT_ABR', $this->
lng->txt(
'ecs_abr'));
90 $this->tpl->setVariable(
'TXT_ID', $this->
lng->txt(
'ecs_unique_id'));
91 $this->tpl->setVariable(
'TXT_ORG', $this->
lng->txt(
'organization'));
96 if ($part->isExportEnabled()) {
97 foreach ($part->getExportTypes() as $obj_type) {
98 $this->tpl->setCurrentBlock(
'obj_erow');
99 $this->tpl->setVariable(
'TXT_OBJ_EINFO', $this->
lng->txt(
'objs_' . $obj_type));
100 $this->tpl->parseCurrentBlock();
103 $this->
lng->loadLanguageModule(
'administration');
104 $this->tpl->setVariable(
'TXT_OBJ_EINFO', $this->
lng->txt(
'disabled'));
107 if ($part->isImportEnabled()) {
108 foreach ($part->getImportTypes() as $obj_type) {
109 $this->tpl->setCurrentBlock(
'obj_irow');
110 $this->tpl->setVariable(
'TXT_OBJ_IINFO', $this->
lng->txt(
'objs_' . $obj_type));
111 $this->tpl->parseCurrentBlock();
114 $this->
lng->loadLanguageModule(
'administration');
115 $this->tpl->setVariable(
'TXT_OBJ_IINFO', $this->
lng->txt(
'disabled'));
119 $part->getImportType(),
120 'import_type[' . $this->
getServer()->getServerId() .
'][' . $a_set[
'mid'] .
']',
129 $this->tpl->setVariable(
'IMPORT_SEL', $sel);
134 $items[] = [ $this->
lng->txt(
'edit'),
135 $this->
ctrl->getLinkTargetByClass(
'ilecsparticipantsettingsgui',
'settings')
138 switch ($part->getImportType()) {
148 $this->
lng->txt(
'ecs_crs_alloc_set'),
149 $this->
ctrl->getLinkTargetByClass(
'ilecsmappingsettingsgui',
'cStart')
159 $this->
lng->txt(
'ecs_dir_alloc_set'),
160 $this->
ctrl->getLinkTargetByClass(
'ilecsmappingsettingsgui',
'dStart')
163 $this->
lng->txt(
'ecs_crs_alloc_set'),
164 $this->
ctrl->getLinkTargetByClass(
'ilecsmappingsettingsgui',
'cStart')
169 if ($this->
access->checkAccess(
'write',
'', (
int) $_REQUEST[
"ref_id"])) {
170 $this->tpl->setCurrentBlock(
"actions");
172 foreach ($items as $item) {
173 $render_items[] = $this->ui_factory->button()->shy(...$item);
175 $this->tpl->setVariable(
'ACTIONS', $this->ui_renderer->render($this->ui_factory->dropdown()->standard($render_items)->withLabel($this->
lng->txt(
'actions'))));
176 $this->tpl->parseCurrentBlock();
183 public function parse(array $participants): void
185 foreach ($participants as $participant) {
186 $tmp_arr[
'mid'] = $participant->getMID();
187 $tmp_arr[
'participants'] = $participant->getParticipantName();
188 $tmp_arr[
'description'] = $participant->getDescription();
189 $tmp_arr[
'email'] = $participant->getEmail();
190 $tmp_arr[
'dns'] = $participant->getDNS();
193 $tmp_arr[
'abr'] = $participant->getOrganisation()->getAbbreviation();
194 $tmp_arr[
'org'] = $participant->getOrganisation()->getName();
getServerId()
Get current server id.
server()
description: > This example shows how a Progress Bar can be rendered and updated by the server...
setDefaultOrderField(string $a_defaultorderfield)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setDefaultOrderDirection(string $a_defaultorderdirection)
__construct(Container $dic, ilPlugin $plugin)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
disable(string $a_module_name)