ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilWebLinkBaseItem.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 abstract class ilWebLinkBaseItem
26 {
27  protected string $title;
28  protected string $target;
29  protected bool $active;
30 
34  protected array $parameters;
35  protected ?string $description;
36 
44  public function __construct(
45  string $title,
46  ?string $description,
47  string $target,
48  bool $active,
49  array $parameters
50  ) {
51  $this->title = $title;
52  $this->target = $target;
53  $this->active = $active;
54  $this->description = $description;
55  $this->parameters = $parameters;
56  }
57 
58  abstract public function isInternal(): bool;
59 
60  public function getTitle(): string
61  {
62  return $this->title;
63  }
64 
65  public function getDescription(): ?string
66  {
67  return $this->description;
68  }
69 
70  public function getTarget(): string
71  {
72  return $this->target;
73  }
74 
75  public function isActive(): bool
76  {
77  return $this->active;
78  }
79 
83  public function getParameters(): array
84  {
85  return $this->parameters;
86  }
87 }
parameters()
description: > This shows how different states are being used in the same Prompt according to parame...
Definition: parameters.php:39
Base class for Web Link items.
__construct(string $title, ?string $description, string $target, bool $active, array $parameters)