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