ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMMAbstractItemGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
24 
29 abstract class ilMMAbstractItemGUI
30 {
31  use Hasher;
32  public const IDENTIFIER = 'identifier';
33  public const CMD_FLUSH = 'flush';
34 
35  protected UIServices $ui;
36 
37  protected Services $http;
38 
40 
42 
43  protected ilTabsGUI $tabs;
44 
45  public ilLanguage $lng;
46 
47  protected ilCtrl $ctrl;
48 
50 
51  public ilTree $tree;
52 
54 
60  public function __construct(protected ilMMTabHandling $tab_handling)
61  {
62  global $DIC;
63 
64  $this->repository = new ilMMItemRepository();
65  $this->tabs = $DIC['ilTabs'];
66  $this->lng = $DIC->language();
67  $this->ctrl = $DIC['ilCtrl'];
68  $this->tpl = $DIC['tpl'];
69  $this->tree = $DIC['tree'];
70  $this->toolbar = $DIC['ilToolbar'];
71  $this->http = $DIC->http();
72  $this->ui = $DIC->ui();
73  $this->access = new ilObjMainMenuAccess();
74 
75  $this->lng->loadLanguageModule('form');
76  }
77 
84  protected function determineCommand(string $standard, string $delete): string
85  {
86  $this->access->checkAccessAndThrowException('visible,read');
87  $cmd = $this->ctrl->getCmd();
88  if ($cmd !== '') {
89  return $cmd;
90  }
91 
92  $r = $this->http->request();
93  $post = $r->getParsedBody();
94 
95  if ($cmd === "" && isset($post['interruptive_items'])) {
96  return $delete;
97  }
98 
99  return $standard;
100  }
101 
107  {
108  $r = $this->http->request();
109  $get = $r->getQueryParams();
110  $post = $r->getParsedBody();
111 
112  if (isset($post['interruptive_items'])) {
113  $string = $post['interruptive_items'][0];
114  $identification = $this->unhash($string);
115  } else {
116  $identification = $this->unhash($get[self::IDENTIFIER]);
117  }
118 
119  return $this->repository->getItemFacadeForIdentificationString($identification);
120  }
121 
122  protected function flush(): void
123  {
124  $this->repository->flushLostItems();
125  $this->tpl->setOnScreenMessage('success', $this->lng->txt("msg_subitem_flushed"), true);
126  $this->cancel();
127  }
128 
129  abstract protected function cancel(): void;
130 }
Class ilMMAbstractItemGUI.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
repository()
description: > Example for rendering a repository card
Definition: repository.php:33
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilMMItemRepository.
Provides fluid interface to RBAC services.
Definition: UIServices.php:24
Class ilMMTabHandling.
static http()
Fetches the global http state from ILIAS.
ilGlobalTemplateInterface $tpl
global $DIC
Definition: shib_login.php:22
ilMMItemRepository $repository
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$post
Definition: ltitoken.php:46
Interface ilMMItemFacadeInterface.
__construct(protected ilMMTabHandling $tab_handling)
ilMMAbstractItemGUI constructor.
$r
determineCommand(string $standard, string $delete)