ILIAS  release_8 Revision v8.24
class.ilWebLinkItemExternal.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
26{
27 public function isInternal(): bool
28 {
29 return false;
30 }
31
32 public function getResolvedLink(bool $with_parameters = true): string
33 {
34 $link = $this->getTarget();
35
36 if (!$with_parameters) {
37 return $link;
38 }
39
40 foreach ($this->getParameters() as $parameter) {
42 continue;
43 }
44 $link = $parameter->appendToLink($link);
45 }
46
47 return $link;
48 }
49}
const VALUES
TODO Once the GUI is updated, undefined can be dropped.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getResolvedLink(bool $with_parameters=true)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...