ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilWebLinkDraftItem.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
26 {
27  protected bool $internal;
28 
37  public function __construct(
38  bool $internal,
39  string $title,
40  ?string $description,
41  string $target,
42  bool $active,
43  array $parameters
44  ) {
45  $this->internal = $internal;
46  parent::__construct($title, $description, $target, $active, $parameters);
47  }
48 
49  public function isInternal(): bool
50  {
51  return $this->internal;
52  }
53 
54  public function addParameter(ilWebLinkBaseParameter $parameter): void
55  {
56  $this->parameters[] = $parameter;
57  }
58 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(bool $internal, string $title, ?string $description, string $target, bool $active, array $parameters)
addParameter(ilWebLinkBaseParameter $parameter)
__construct(Container $dic, ilPlugin $plugin)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...