ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilKioskModeService.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
24 final class ilKioskModeService
25 {
26  protected ilCtrl $ctrl;
27  protected ilLanguage $language;
28  protected ilAccess $access;
30 
31  public function __construct(
32  ilCtrl $ctrl,
33  ilLanguage $language,
34  ilAccess $access,
35  ilObjectDefinition $obj_definition
36  ) {
37  $this->ctrl = $ctrl;
38  $this->language = $language;
39  $this->access = $access;
40  $this->obj_definition = $obj_definition;
41  }
42 
46  public function getViewFor(ilObject $object): ?ilKioskModeView
47  {
48  $object_type = $object->getType();
49  if (!$this->hasKioskMode($object_type)) {
50  return null;
51  }
52 
53  $class_name = $this->getClassNameForType($object_type);
54 
55  return new $class_name(
56  $object,
57  $this->ctrl,
58  $this->language,
59  $this->access
60  );
61  }
62 
68  public function hasKioskMode(string $object_type): bool
69  {
70  $class_name = $this->getClassNameForType($object_type);
71  return class_exists($class_name);
72  }
73 
77  protected function getClassNameForType(string $object_type): string
78  {
79  $class = $this->obj_definition->getClassName($object_type);
80  return "il" . $class . "KioskModeView";
81  }
82 }
Base class to be implemented and put in class-directory of module with the name il$MODULEKioskModeVie...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
ilObjectDefinition $obj_definition
getClassNameForType(string $object_type)
hasKioskMode(string $object_type)
Check if objects of a certain type provides kiosk mode in general.
Central entry point for users of the service.
getViewFor(ilObject $object)
Try to get a kiosk mode view for the given object.
__construct(ilCtrl $ctrl, ilLanguage $language, ilAccess $access, ilObjectDefinition $obj_definition)
language()
description: > Example for rendring a language glyph.
Definition: language.php:41