ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilChatroomObjectGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
26 abstract class ilChatroomObjectGUI extends ilObjectGUI
27 {
29 
30  public function __construct($data, ?int $id = 0, bool $call_by_reference = true, bool $prepare_output = true)
31  {
33  global $DIC;
34 
35  $this->http = $DIC->http();
36 
38  }
39 
40  protected function dispatchCall(string $gui, string $method): bool
41  {
42  $definition = $this->getObjectDefinition();
43  if ($definition->hasGUI($gui)) {
44  $guiHandler = $definition->buildGUI($gui, $this);
45  $guiHandler->execute($method);
46  return true;
47  }
48 
49  return false;
50  }
51 
52  abstract protected function getObjectDefinition(): ilChatroomObjectDefinition;
53 
54  abstract public function getConnector(): ilChatroomServerConnector;
55 
59  public function switchToVisibleMode(): void
60  {
61  $this->prepareOutput();
62  }
63 
64  public function getAdminTabs(): void
65  {
66  if (
67  $this->http->wrapper()->query()->has('admin_mode') &&
68  $this->http->wrapper()->query()->retrieve(
69  'admin_mode',
70  $this->refinery->kindlyTo()->string()
71  ) === 'repository'
72  ) {
73  $this->ctrl->setParameterByClass(ilAdministrationGUI::class, 'admin_mode', 'settings');
74  $this->tabs_gui->setBackTarget(
75  $this->lng->txt('administration'),
76  $this->ctrl->getLinkTargetByClass(ilAdministrationGUI::class, 'frameset')
77  );
78  $this->ctrl->setParameterByClass(ilAdministrationGUI::class, 'admin_mode', 'repository');
79  }
80 
81  if ($this->tree->getSavedNodeData($this->object->getRefId())) {
82  $this->tabs_gui->addTarget('trash', $this->ctrl->getLinkTarget($this, 'trash'), 'trash', static::class);
83  }
84  }
85 }
prepareOutput(bool $show_sub_objects=true)
switchToVisibleMode()
Calls $this->prepareOutput() method.
static http()
Fetches the global http state from ILIAS.
Class ilChatroomServerConnector.
Class ilObjectGUI Basic methods of all Output classes.
global $DIC
Definition: shib_login.php:22
dispatchCall(string $gui, string $method)
__construct(Container $dic, ilPlugin $plugin)