ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilKioskModeView.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 /* Copyright (c) 2018 - Richard Klees <richard.klees@concepts-and-training.de> - Extended GPL, see LICENSE */
6 
11 abstract class ilKioskModeView implements ILIAS\KioskMode\View
12 {
13  protected ilCtrl $ctrl;
14  protected ilLanguage $lng;
16 
23  final public function __construct(
24  ilObject $object,
25  ilCtrl $ctrl,
26  ilLanguage $lng,
27  ilAccessHandler $access
28  ) {
29  $this->ctrl = $ctrl;
30  $this->lng = $lng;
31  $this->access = $access;
32 
33  $objectClassName = $this->getObjectClass();
34  if (!($object instanceof $objectClassName)) {
35  throw new LogicException(
36  "Provided object of class '" . get_class($object) . "' does not " .
37  "fit view for '" . $this->getObjectClass() . "'"
38  );
39  }
40  $this->setObject($object);
41  if (!$this->hasPermissionToAccessKioskMode()) {
42  throw new RuntimeException(
43  "User is not allowed to access the kiosk mode for the supplied object."
44  );
45  }
46  }
47 
51  abstract protected function getObjectClass(): string;
52 
59  abstract protected function setObject(ilObject $object);
60 
65  abstract protected function hasPermissionToAccessKioskMode(): bool;
66 
67  // Note that methods of ILIAS\KioskMode\View need to be implemented as well.
68 }
Base class to be implemented and put in class-directory of module with the name il$MODULEKioskModeVie...
ilAccessHandler $access
setObject(ilObject $object)
Set the object for this view.
__construct(ilObject $object, ilCtrl $ctrl, ilLanguage $lng, ilAccessHandler $access)
getObjectClass()
Get the class of objects this view displays.
hasPermissionToAccessKioskMode()
Check if the global user has permission to access the kiosk mode of the supplied object.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...