ILIAS  trunk Revision v12.0_alpha-16-g3e876e53c80
class.ilObjGuidedTourGUI.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22{
23 public function __construct(
24 $a_data,
25 int $a_id,
26 bool $a_call_by_reference
27 ) {
28 if ($a_call_by_reference) {
29 throw new \RuntimeException("Can't instantiate guided tour via reference id.");
30 }
31 $this->type = "gdtr";
32 parent::__construct($a_data, $a_id, $a_call_by_reference, false);
33 }
34}
__construct( $a_data, int $a_id, bool $a_call_by_reference)
Class ilObjectGUI Basic methods of all Output classes.
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc