ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
LSUrlBuilder.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
22 
23 class LSUrlBuilder implements URLBuilder
24 {
25  public const PARAM_LSO_COMMAND = 'lsocmd';
26  public const PARAM_LSO_PARAMETER = 'lsov';
27 
29 
30  public function __construct(ILIAS\Data\URI $base_url)
31  {
32  $this->base_url = $base_url;
33  }
34 
35  public function getURL(string $command, int $param = null): ILIAS\Data\URI
36  {
37  $query = $this->base_url->getQuery();
38  if (!$query) {
39  $params = [];
40  } else {
41  parse_str($this->base_url->getQuery(), $params);
42  }
43 
44  $params[self::PARAM_LSO_COMMAND] = $command;
45  if (is_null($param)) {
46  unset($params[self::PARAM_LSO_PARAMETER]);
47  } else {
48  $params[self::PARAM_LSO_PARAMETER] = $param;
49  }
50  return $this->base_url->withQuery(http_build_query($params));
51  }
52 
53  public function getHref(string $command, int $param = null): string
54  {
55  $url = $this->getURL($command, $param);
56  return $url->getBaseURI() . '?' . $url->getQuery();
57  }
58 }
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
Definition: ltiregstart.php:33
Class ChatMainBarProvider .
const PARAM_LSO_COMMAND
__construct(ILIAS\Data\URI $base_url)
$param
Definition: xapitoken.php:46
const PARAM_LSO_PARAMETER
$query
getHref(string $command, int $param=null)
The URLBuilder allows views to get links that are used somewhere inline in the content.
Definition: URLBuilder.php:15
ILIAS Data URI $base_url
$url
getURL(string $command, int $param=null)
Get an URL for the provided command and params.