ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilBookingHelpAdapter.php
Go to the documentation of this file.
1 <?php
2 
24 {
26  protected ilHelpGUI $help;
27 
28  public function __construct(
29  ilObjBookingPool $pool,
30  ilHelpGUI $help
31  ) {
32  $this->pool = $pool;
33  $this->help = $help;
34  }
35 
36  public function setHelpId(string $a_id): void
37  {
38  $ilHelp = $this->help;
39 
40  $object_subtype = ($this->pool->getScheduleType() === ilObjBookingPool::TYPE_FIX_SCHEDULE)
41  ? '-schedule'
42  : '-nonschedule';
43 
44  $ilHelp->setScreenIdComponent('book');
45  $ilHelp->setScreenId('object' . $object_subtype);
46  $ilHelp->setSubScreenId($a_id);
47  }
48 }
__construct(ilObjBookingPool $pool, ilHelpGUI $help)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Help GUI class.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setScreenIdComponent(string $a_comp)