ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilOrgUnitPositionGUI Class Reference

Class ilOrgUnitPositionGUI. More...

+ Inheritance diagram for ilOrgUnitPositionGUI:
+ Collaboration diagram for ilOrgUnitPositionGUI:

Public Member Functions

 __construct ()
 
 getSinglePosLinkTarget (string $action, ?int $pos_id=null)
 
 addSubTabs ()
 
- Public Member Functions inherited from ILIAS\components\OrgUnit\ARHelper\BaseCommands
 getParentGui ()
 
 setParentGui (BaseCommands $parent_gui)
 
 executeCommand ()
 
 addSubTabs ()
 

Data Fields

const SUBTAB_SETTINGS = 'settings'
 
const SUBTAB_PERMISSIONS = 'obj_orgunit_positions'
 
const CMD_CONFIRM_DELETION = 'confirmDeletion'
 
const CMD_ASSIGN = 'assign'
 
- Data Fields inherited from ILIAS\components\OrgUnit\ARHelper\BaseCommands
const CMD_INDEX = "index"
 
const CMD_DEFAULT_PERMISSIONS = "defaultPermissions"
 
const CMD_ADD = "add"
 
const CMD_CREATE = "create"
 
const CMD_EDIT = "edit"
 
const CMD_UPDATE = "update"
 
const CMD_CONFIRM = "confirm"
 
const CMD_DELETE = "delete"
 
const CMD_CANCEL = "cancel"
 
const AR_ID = "arid"
 

Protected Member Functions

 getPossibleNextClasses ()
 
 getActiveTabId ()
 
 index ()
 
 add ()
 
 create ()
 
 edit ()
 
 update ()
 
 defaultPermissions ()
 
 updateDefaultPermissions ()
 
 getDefaultPermissionsForm (int $position_id)
 
 getTitleForFormHeaderByContext (string $context)
 
 redirectIfCancelled ()
 
 assign (int $position_id)
 
 confirmDeletion ()
 
 delete ()
 
 cancel ()
 
 getPositionFromRequest ()
 
 getTable ()
 
- Protected Member Functions inherited from ILIAS\components\OrgUnit\ARHelper\BaseCommands
 __construct (protected array $query_namespace=['orgu', 'posedit'])
 
 index ()
 
 getPossibleNextClasses ()
 
 getActiveTabId ()
 
 cancel ()
 
 setContent (string $html)
 
 pushSubTab (string $subtab_id, string $url)
 
 activeSubTab (string $subtab_id)
 
 getParentRefId ()
 
 getRowIdFromQuery ()
 

Protected Attributes

ilToolbarGUI $toolbar
 
ILIAS UI Component Link Factory $link_factory
 
ilOrgUnitPositionDBRepository $positionRepo
 
ilOrgUnitUserAssignmentDBRepository $assignmentRepo
 
ilOrgUnitPermissionDBRepository $permissionRepo
 
ilObjectDefinition $objectDefinition
 
ILIAS HTTP Wrapper ArrayBasedRequestWrapper $post
 
- Protected Attributes inherited from ILIAS\components\OrgUnit\ARHelper\BaseCommands
ilLanguage $lng
 
ilCtrl $ctrl
 
ilAccess $access
 
ILIAS HTTP Services $http
 
ilGlobalTemplateInterface $tpl
 
BaseCommands $parent_gui = null
 
URLBuilder $url_builder
 
URLBuilderToken $action_token = null
 
URLBuilderToken $row_id_token
 
DataFactory $data_factory
 
Refinery $refinery
 
ServerRequestInterface $request
 
ILIAS HTTP Wrapper ArrayBasedRequestWrapper $query
 
UIFactory $ui_factory
 
UIRenderer $ui_renderer
 

Private Member Functions

 getAuthorityDescription (array $authorities)
 Returns descriptions for authorities as an array of strings. More...
 

Detailed Description

Constructor & Destructor Documentation

◆ __construct()

ilOrgUnitPositionGUI::__construct ( )

Definition at line 47 of file class.ilOrgUnitPositionGUI.php.

References $DIC, $dic, $ref_id, ILIAS\GlobalScreen\Provider\__construct(), ilObjOrgUnitAccess\_checkAccessPositions(), ILIAS\Repository\ctrl(), ilOrgUnitLocalDIC\dic(), ILIAS\Repository\initRequest(), ILIAS\Repository\lng(), ILIAS\Repository\objectDefinition(), and ILIAS\Repository\toolbar().

48  {
50  $this->positionRepo = $dic["repo.Positions"];
51  $this->assignmentRepo = $dic["repo.UserAssignments"];
52  $this->permissionRepo = $dic["repo.Permissions"];
53 
54  $to_int = $dic['refinery']->kindlyTo()->int();
55  $ref_id = $dic['query']->retrieve('ref_id', $to_int);
56  $this->link_factory = $dic['ui.factory']->link();
57 
59 
60  global $DIC;
61  $this->toolbar = $DIC->toolbar();
62  $this->objectDefinition = $DIC["objDefinition"];
63 
64  $this->initRequest(
65  $DIC->http(),
66  $dic['refinery']
67  );
68 
70  $this->tpl->setOnScreenMessage('failure', $this->lng->txt("permission_denied"), true);
71  $this->ctrl->redirectByClass(ilObjOrgUnitGUI::class);
72  }
73 
74  $this->post = $DIC->http()->wrapper()->post();
75  }
initRequest(HTTP\Services $http, Refinery\Factory $refinery, ?array $passed_query_params=null, ?array $passed_post_data=null)
Query params and post data parameters are used for testing.
$ref_id
Definition: ltiauth.php:65
global $DIC
Definition: shib_login.php:22
static _checkAccessPositions(int $ref_id)
__construct(Container $dic, ilPlugin $plugin)
$dic
Definition: result.php:31
+ Here is the call graph for this function:

Member Function Documentation

◆ add()

ilOrgUnitPositionGUI::add ( )
protected

Definition at line 102 of file class.ilOrgUnitPositionGUI.php.

102  : void
103  {
104  $position = $this->positionRepo->create();
105  $form = new ilOrgUnitPositionFormGUI($this, $position);
106  $this->tpl->setContent($form->getHTML());
107  }
Class ilOrgUnitPositionFormGUI.

◆ addSubTabs()

ilOrgUnitPositionGUI::addSubTabs ( )

Definition at line 345 of file class.ilOrgUnitPositionGUI.php.

References getSinglePosLinkTarget(), and ILIAS\components\OrgUnit\ARHelper\BaseCommands\pushSubTab().

Referenced by defaultPermissions(), and edit().

345  : void
346  {
347  $this->pushSubTab(
348  self::SUBTAB_SETTINGS,
349  $this->getSinglePosLinkTarget(self::CMD_EDIT)
350  );
351  $this->pushSubTab(
352  self::SUBTAB_PERMISSIONS,
353  $this->getSinglePosLinkTarget(self::CMD_DEFAULT_PERMISSIONS)
354  );
355  }
pushSubTab(string $subtab_id, string $url)
getSinglePosLinkTarget(string $action, ?int $pos_id=null)
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ assign()

ilOrgUnitPositionGUI::assign ( int  $position_id)
protected

Definition at line 239 of file class.ilOrgUnitPositionGUI.php.

References cancel(), ilOrgUnitPosition\CORE_POSITION_EMPLOYEE, and ILIAS\Repository\lng().

Referenced by delete().

239  : void
240  {
241  $position = $this->positionRepo->getSingle($position_id, 'id');
242  if ($position->isCorePosition()) {
243  $this->cancel();
244  }
245 
246  $employee_position = $this->positionRepo->getSingle(ilOrgUnitPosition::CORE_POSITION_EMPLOYEE, 'core_identifier');
247  $assignments = $this->assignmentRepo->getByPosition($position->getId());
248  foreach ($assignments as $assignment) {
249  $this->assignmentRepo->store($assignment->withPositionId($employee_position->getId()));
250  }
251 
252  $this->tpl->setOnScreenMessage('success', $this->lng->txt('msg_assignment_to_employee_done'), true);
253  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ cancel()

ilOrgUnitPositionGUI::cancel ( )
protected

Definition at line 325 of file class.ilOrgUnitPositionGUI.php.

References ILIAS\Repository\ctrl().

Referenced by assign(), and confirmDeletion().

325  : void
326  {
327  $this->ctrl->redirect($this, self::CMD_INDEX);
328  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ confirmDeletion()

ilOrgUnitPositionGUI::confirmDeletion ( )
protected

Definition at line 255 of file class.ilOrgUnitPositionGUI.php.

References cancel(), ILIAS\Repository\ctrl(), getAuthorityDescription(), getPositionFromRequest(), and ILIAS\Repository\lng().

255  : void
256  {
257  $position = $this->getPositionFromRequest();
258  if ($position->isCorePosition()) {
259  $this->cancel();
260  }
261  $this->lng->loadLanguageModule('orgu');
262  $position_string = $this->lng->txt("position") . ": ";
263  $authority_string = $this->lng->txt("authorities") . ": ";
264  $user_string = $this->lng->txt("user_assignments") . ": ";
265 
266  $confirmation = new ilConfirmationGUI();
267  $confirmation->setFormAction($this->ctrl->getFormAction($this));
268  $confirmation->setCancel($this->lng->txt(self::CMD_CANCEL), self::CMD_CANCEL);
269  $confirmation->setConfirm($this->lng->txt(self::CMD_DELETE), self::CMD_DELETE);
270  $confirmation->setHeaderText($this->lng->txt('msg_confirm_deletion'));
271  $confirmation->addItem(self::AR_ID, (string) $position->getId(), $position_string
272  . $position->getTitle());
273  // Authorities
274  $authority_string .= implode(", ", $this->getAuthorityDescription($position->getAuthorities()));
275  $confirmation->addItem('authorities', '', $authority_string);
276 
277  // Amount uf user-assignments
278  $userIdsOfPosition = $this->assignmentRepo->getUsersByPosition($position->getId());
279  $ilOrgUnitUserQueries = new ilOrgUnitUserQueries();
280  $usersOfPosition = $ilOrgUnitUserQueries->findAllUsersByUserIds($userIdsOfPosition);
281  $userNames = $ilOrgUnitUserQueries->getAllUserNames($usersOfPosition);
282 
283  $confirmation->addItem('users', '', $user_string . implode(', ', $userNames));
284 
285  $checkbox_assign_users = new ilCheckboxInputGUI('', 'assign_users');
286  $checkbox_assign_users->setChecked(true);
287  $checkbox_assign_users->setValue('1');
288  $checkbox_assign_users->setOptionTitle('Assign affected users to employee role');
289  $confirmation->addItem('assign_users', '', $checkbox_assign_users->render());
290 
291  $this->tpl->setContent($confirmation->getHTML());
292  }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getAuthorityDescription(array $authorities)
Returns descriptions for authorities as an array of strings.
+ Here is the call graph for this function:

◆ create()

ilOrgUnitPositionGUI::create ( )
protected

Definition at line 109 of file class.ilOrgUnitPositionGUI.php.

References ILIAS\Repository\ctrl(), ILIAS\Repository\lng(), and redirectIfCancelled().

109  : void
110  {
111  $this->redirectIfCancelled();
112  $form = new ilOrgUnitPositionFormGUI($this, $this->positionRepo->create());
113  if ($form->saveObject() === true) {
114  $this->tpl->setOnScreenMessage('success', $this->lng->txt('msg_position_created'), true);
115  $this->ctrl->redirect($this, self::CMD_INDEX);
116  }
117 
118  $this->tpl->setContent($form->getHTML());
119  }
Class ilOrgUnitPositionFormGUI.
+ Here is the call graph for this function:

◆ defaultPermissions()

ilOrgUnitPositionGUI::defaultPermissions ( )
protected

Definition at line 145 of file class.ilOrgUnitPositionGUI.php.

References ILIAS\components\OrgUnit\ARHelper\BaseCommands\activeSubTab(), addSubTabs(), getDefaultPermissionsForm(), and ILIAS\components\OrgUnit\ARHelper\BaseCommands\getRowIdFromQuery().

Referenced by updateDefaultPermissions().

145  : void
146  {
147  $this->addSubTabs();
148  $this->activeSubTab(self::SUBTAB_PERMISSIONS);
149  $form = $this->getDefaultPermissionsForm($this->getRowIdFromQuery());
150  $this->tpl->setContent($this->ui_renderer->render($form));
151  }
getDefaultPermissionsForm(int $position_id)
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ delete()

ilOrgUnitPositionGUI::delete ( )
protected

Definition at line 294 of file class.ilOrgUnitPositionGUI.php.

References assign(), ILIAS\Repository\ctrl(), ILIAS\Repository\lng(), null, and ILIAS\Repository\refinery().

294  : void
295  {
296  $position_id = $this->post->retrieve(
297  self::AR_ID,
298  $this->refinery->byTrying([
299  $this->refinery->kindlyTo()->int(),
300  $this->refinery->always(null)
301  ])
302  );
303 
304  if ($position_id === null) {
305  $this->tpl->setOnScreenMessage('failure', $this->lng->txt('msg_position_delete_fail'), true);
306  $this->ctrl->redirect($this, self::CMD_INDEX);
307  }
308 
309  if ($this->post->has('assign_users')
310  && $this->post->retrieve(
311  'assign_users',
312  $this->refinery->byTrying([
313  $this->refinery->kindlyTo()->bool(),
314  $this->refinery->always(false)
315  ])
316  )
317  ) {
318  $this->assign($position_id);
319  }
320  $this->positionRepo->delete($position_id);
321  $this->tpl->setOnScreenMessage('success', $this->lng->txt('msg_deleted'), true);
322  $this->ctrl->redirect($this, self::CMD_INDEX);
323  }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
+ Here is the call graph for this function:

◆ edit()

ilOrgUnitPositionGUI::edit ( )
protected

Definition at line 121 of file class.ilOrgUnitPositionGUI.php.

References ILIAS\components\OrgUnit\ARHelper\BaseCommands\activeSubTab(), addSubTabs(), and getPositionFromRequest().

121  : void
122  {
123  $this->addSubTabs();
124  $this->activeSubTab(self::SUBTAB_SETTINGS);
125  $position = $this->getPositionFromRequest();
126  $form = new ilOrgUnitPositionFormGUI($this, $position);
127  $form->fillForm();
128  $this->tpl->setContent($form->getHTML());
129  }
Class ilOrgUnitPositionFormGUI.
+ Here is the call graph for this function:

◆ getActiveTabId()

ilOrgUnitPositionGUI::getActiveTabId ( )
protected

Definition at line 84 of file class.ilOrgUnitPositionGUI.php.

References ilObjOrgUnitGUI\TAB_POSITIONS.

84  : string
85  {
87  }

◆ getAuthorityDescription()

ilOrgUnitPositionGUI::getAuthorityDescription ( array  $authorities)
private

Returns descriptions for authorities as an array of strings.

Parameters
ilOrgUnitAuthority[]$authorities

Definition at line 390 of file class.ilOrgUnitPositionGUI.php.

References $lang, ILIAS\components\OrgUnit\ARHelper\BaseCommands\$lng, ILIAS\GlobalScreen\Scope\Footer\Factory\getTitle(), ilOrgUnitAuthority\OVER_EVERYONE, ilOrgUnitAuthority\SCOPE_SAME_ORGU, and ilOrgUnitAuthority\SCOPE_SUBSEQUENT_ORGUS.

Referenced by confirmDeletion().

390  : array
391  {
392  $lang = $this->lng;
393  $lang->loadLanguageModule('orgu');
394  $lang_keys = array(
395  'in',
396  'over',
400  );
401  $t = [];
402  foreach ($lang_keys as $key) {
403  $t[$key] = $lang->txt($key);
404  }
405 
406  $authority_description = [];
407  foreach ($authorities as $authority) {
408  switch ($authority->getOver()) {
410  $over_txt = $t["over_" . $authority->getOver()];
411  break;
412  default:
413  $over_txt = $this->positionRepo
414  ->getSingle($authority->getOver(), 'id')
415  ->getTitle();
416  break;
417  }
418 
419  $authority_description[] = " " . $t["over"] . " " . $over_txt . " " . $t["in"] . " " . $t["scope_" . $authority->getScope()];
420  }
421 
422  return $authority_description;
423  }
$lang
Definition: xapiexit.php:25
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getDefaultPermissionsForm()

ilOrgUnitPositionGUI::getDefaultPermissionsForm ( int  $position_id)
protected

Definition at line 166 of file class.ilOrgUnitPositionGUI.php.

References $context, $permissionRepo, getSinglePosLinkTarget(), getTitleForFormHeaderByContext(), ILIAS\Repository\lng(), ILIAS\Repository\refinery(), and ILIAS\UI\Implementation\Component\Input\withValue().

Referenced by defaultPermissions(), and updateDefaultPermissions().

166  : StandardForm
167  {
168  $sections = [];
169  $sections[] = $this->ui_factory->input()->field()->section(
170  [],
171  $this->lng->txt("form_title_org_default_permissions_update")
172  );
173 
174  $form_action = $this->getSinglePosLinkTarget('updateDefaultPermissions', $position_id);
175  $permissions = $this->permissionRepo->getDefaultsForActiveContexts($position_id);
176  $permission_repo = $this->permissionRepo;
177  foreach ($permissions as $perm) {
178  $fields = [];
179  $operations = $perm->getPossibleOperations();
180  foreach ($operations as $operation) {
181  $fields[$operation->getOperationId()] = $this->ui_factory->input()->field()
182  ->checkbox($this->lng->txt("org_op_{$operation->getOperationString()}"))
183  ->withValue(
184  $perm->isOperationIdSelected($operation->getOperationId())
185  );
186  }
187 
188  $context = $perm->getContext()->getContext();
189  $sections[$perm->getId()] = $this->ui_factory->input()->field()
190  ->section($fields, $this->getTitleForFormHeaderByContext($context))
191  ->withAdditionalTransformation(
192  $this->refinery->custom()->transformation(
193  function ($v) use ($operations, $perm, $permission_repo) {
194  $v = array_filter($v);
195  $nu_ops = array_filter($operations, fn($o) => array_key_exists($o->getOperationId(), $v));
196  $protected = $perm->isProtected();
197  //$perm = $permission_repo->update($perm);
198  $perm = $perm->withOperations($nu_ops)->withProtected(false);
199  $permission_repo->store($perm);
200  //$perm=$perm->withProtected($protected);
201  //$permission_repo->store($perm);
202  return true;
203  }
204  )
205  );
206  }
207 
208  return $this->ui_factory->input()->container()->form()->standard($form_action, $sections);
209  }
$context
Definition: webdav.php:31
ilOrgUnitPermissionDBRepository $permissionRepo
withValue($value)
Get an input like this with another value displayed on the client side.
Definition: Group.php:61
getSinglePosLinkTarget(string $action, ?int $pos_id=null)
getTitleForFormHeaderByContext(string $context)
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getPositionFromRequest()

ilOrgUnitPositionGUI::getPositionFromRequest ( )
protected

Definition at line 330 of file class.ilOrgUnitPositionGUI.php.

References $id, and ILIAS\components\OrgUnit\ARHelper\BaseCommands\getRowIdFromQuery().

Referenced by confirmDeletion(), edit(), and update().

331  {
332  $id = $this->getRowIdFromQuery();
333  return $this->positionRepo->getSingle($id, 'id');
334  }
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getPossibleNextClasses()

ilOrgUnitPositionGUI::getPossibleNextClasses ( )
protected

Definition at line 77 of file class.ilOrgUnitPositionGUI.php.

77  : array
78  {
79  return array(
80  ilOrgUnitUserAssignmentGUI::class,
81  );
82  }

◆ getSinglePosLinkTarget()

ilOrgUnitPositionGUI::getSinglePosLinkTarget ( string  $action,
?int  $pos_id = null 
)

Definition at line 336 of file class.ilOrgUnitPositionGUI.php.

References ILIAS\components\OrgUnit\ARHelper\BaseCommands\getRowIdFromQuery(), and null.

Referenced by addSubTabs(), getDefaultPermissionsForm(), and index().

336  : string
337  {
338  $target_id = $pos_id !== null ? [$pos_id] : [$this->getRowIdFromQuery()];
339  return $this->url_builder
340  ->withParameter($this->row_id_token, $target_id)
341  ->withParameter($this->action_token, $action)
342  ->buildURI()->__toString();
343  }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getTable()

ilOrgUnitPositionGUI::getTable ( )
protected

Definition at line 357 of file class.ilOrgUnitPositionGUI.php.

References ILIAS\components\OrgUnit\ARHelper\BaseCommands\$row_id_token, and ILIAS\Repository\lng().

Referenced by index().

357  : Table\Data
358  {
359  $columns = [
360  'title' => $this->ui_factory->table()->column()->text($this->lng->txt("title")),
361  'description' => $this->ui_factory->table()->column()->text($this->lng->txt("description")),
362  'authorities' => $this->ui_factory->table()->column()->status($this->lng->txt("authorities"))
363  ->withIsSortable(false),
364  ];
365 
366  $actions = [
367  'edit' => $this->ui_factory->table()->action()->single(
368  $this->lng->txt('edit'),
369  $this->url_builder->withParameter($this->action_token, "edit"),
371  ),
372  'delete' => $this->ui_factory->table()->action()->single(
373  $this->lng->txt('delete'),
374  $this->url_builder->withParameter($this->action_token, "confirmDeletion"),
376  ),
377  ];
378 
379  return $this->ui_factory->table()
380  ->data($this->positionRepo, '', $columns)
381  ->withId('orgu_positions')
382  ->withActions($actions);
383  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getTitleForFormHeaderByContext()

ilOrgUnitPositionGUI::getTitleForFormHeaderByContext ( string  $context)
protected

Definition at line 211 of file class.ilOrgUnitPositionGUI.php.

References ILIAS\Repository\lng(), ilObjectPlugin\lookupTxtById(), and ILIAS\Repository\objectDefinition().

Referenced by getDefaultPermissionsForm().

212  {
213  $lang_code = "obj_{$context}";
214  if ($this->objectDefinition->isPlugin($context)) {
215  return ilObjectPlugin::lookupTxtById($context, $lang_code);
216  }
217  return $this->lng->txt($lang_code);
218  }
$context
Definition: webdav.php:31
static lookupTxtById(string $plugin_id, string $lang_var)
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ index()

ilOrgUnitPositionGUI::index ( )
protected

Definition at line 89 of file class.ilOrgUnitPositionGUI.php.

References $url, getSinglePosLinkTarget(), getTable(), ILIAS\Repository\lng(), and ILIAS\Repository\toolbar().

89  : void
90  {
91  $url = $this->getSinglePosLinkTarget(self::CMD_ADD, 0);
92  $link = $this->link_factory->standard(
93  $this->lng->txt('add_position'),
94  $url
95  );
96  $this->toolbar->addComponent($link);
97 
98  $table = $this->getTable()->withRequest($this->request);
99  $this->tpl->setContent($this->ui_renderer->render($table));
100  }
$url
Definition: shib_logout.php:66
getSinglePosLinkTarget(string $action, ?int $pos_id=null)
+ Here is the call graph for this function:

◆ redirectIfCancelled()

ilOrgUnitPositionGUI::redirectIfCancelled ( )
protected

Definition at line 220 of file class.ilOrgUnitPositionGUI.php.

References $url, ILIAS\Repository\ctrl(), and ILIAS\Repository\refinery().

Referenced by create(), and update().

221  {
222  if ($this->post->has('cmd')) {
223  $cmd = $this->post->retrieve(
224  'cmd',
225  $this->refinery->custom()->transformation(
226  fn($v) => array_key_first($v)
227  )
228  );
229  if ($cmd === self::CMD_CANCEL) {
230  $url = $this->url_builder
231  ->withParameter($this->action_token, self::CMD_INDEX)
232  ->buildURI()
233  ->__toString();
234  $this->ctrl->redirectToURL($url);
235  }
236  }
237  }
$url
Definition: shib_logout.php:66
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ update()

ilOrgUnitPositionGUI::update ( )
protected

Definition at line 131 of file class.ilOrgUnitPositionGUI.php.

References ILIAS\Repository\ctrl(), getPositionFromRequest(), ILIAS\Repository\lng(), and redirectIfCancelled().

131  : void
132  {
133  $this->redirectIfCancelled();
134  $position = $this->getPositionFromRequest();
135  $form = new ilOrgUnitPositionFormGUI($this, $position);
136  $form->setValuesByPost();
137  if ($form->saveObject() === true) {
138  $this->tpl->setOnScreenMessage('success', $this->lng->txt('msg_position_updated'), true);
139  $this->ctrl->redirect($this, self::CMD_INDEX);
140  }
141 
142  $this->tpl->setContent($form->getHTML());
143  }
Class ilOrgUnitPositionFormGUI.
+ Here is the call graph for this function:

◆ updateDefaultPermissions()

ilOrgUnitPositionGUI::updateDefaultPermissions ( )
protected

Definition at line 153 of file class.ilOrgUnitPositionGUI.php.

References defaultPermissions(), getDefaultPermissionsForm(), ILIAS\components\OrgUnit\ARHelper\BaseCommands\getRowIdFromQuery(), and ILIAS\Repository\lng().

153  : void
154  {
155  $form = $this->getDefaultPermissionsForm($this->getRowIdFromQuery())
156  ->withRequest($this->request);
157  if ($form->getData()) {
158  $this->tpl->setOnScreenMessage('success', $this->lng->txt('msg_success_permission_saved'), true);
159  $this->defaultPermissions();
160  } else {
161  $this->tpl->setOnScreenMessage('failure', $this->lng->txt('msg_success_permission_not_saved'), true);
162  $this->tpl->setContent($this->ui_renderer->render($form));
163  }
164  }
getDefaultPermissionsForm(int $position_id)
+ Here is the call graph for this function:

Field Documentation

◆ $assignmentRepo

ilOrgUnitUserAssignmentDBRepository ilOrgUnitPositionGUI::$assignmentRepo
protected

Definition at line 41 of file class.ilOrgUnitPositionGUI.php.

◆ $link_factory

ILIAS UI Component Link Factory ilOrgUnitPositionGUI::$link_factory
protected

Definition at line 39 of file class.ilOrgUnitPositionGUI.php.

◆ $objectDefinition

ilObjectDefinition ilOrgUnitPositionGUI::$objectDefinition
protected

Definition at line 43 of file class.ilOrgUnitPositionGUI.php.

◆ $permissionRepo

ilOrgUnitPermissionDBRepository ilOrgUnitPositionGUI::$permissionRepo
protected

Definition at line 42 of file class.ilOrgUnitPositionGUI.php.

Referenced by getDefaultPermissionsForm().

◆ $positionRepo

ilOrgUnitPositionDBRepository ilOrgUnitPositionGUI::$positionRepo
protected

Definition at line 40 of file class.ilOrgUnitPositionGUI.php.

◆ $post

ILIAS HTTP Wrapper ArrayBasedRequestWrapper ilOrgUnitPositionGUI::$post
protected

Definition at line 44 of file class.ilOrgUnitPositionGUI.php.

◆ $toolbar

ilToolbarGUI ilOrgUnitPositionGUI::$toolbar
protected

Definition at line 38 of file class.ilOrgUnitPositionGUI.php.

◆ CMD_ASSIGN

const ilOrgUnitPositionGUI::CMD_ASSIGN = 'assign'

Definition at line 36 of file class.ilOrgUnitPositionGUI.php.

◆ CMD_CONFIRM_DELETION

const ilOrgUnitPositionGUI::CMD_CONFIRM_DELETION = 'confirmDeletion'

Definition at line 35 of file class.ilOrgUnitPositionGUI.php.

◆ SUBTAB_PERMISSIONS

const ilOrgUnitPositionGUI::SUBTAB_PERMISSIONS = 'obj_orgunit_positions'

Definition at line 34 of file class.ilOrgUnitPositionGUI.php.

◆ SUBTAB_SETTINGS

const ilOrgUnitPositionGUI::SUBTAB_SETTINGS = 'settings'

Definition at line 33 of file class.ilOrgUnitPositionGUI.php.


The documentation for this class was generated from the following file: