ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Context.php
Go to the documentation of this file.
1 <?php
2 
19 namespace ILIAS\StaticURL;
20 
24 
28 final class Context
29 {
30  public function __construct(private Container $container)
31  {
32  }
33 
34  public function getUserLanguage(): string
35  {
36  return $this->container->user()->getCurrentLanguage();
37  }
38 
39  public function refinery(): Factory
40  {
41  return $this->container->refinery();
42  }
43 
44  public function http(): Services
45  {
46  return $this->container->http();
47  }
48 
49  public function ctrl(): \ilCtrlInterface
50  {
51  return $this->container->ctrl();
52  }
53 
54  public function checkPermission(string $permission, int $ref_id): bool
55  {
56  return $this->container->access()->checkAccess($permission, '', $ref_id);
57  }
58 
59  public function getParentRefId(int $ref_id): ?int
60  {
61  return $this->container->repositoryTree()->getParentId($ref_id);
62  }
63 
64  public function exists(int $ref_id): bool
65  {
66  return $this->container->repositoryTree()->isInTree($ref_id);
67  }
68 
69  public function getUserId(): int
70  {
71  return $this->container->user()->getId();
72  }
73 
74  public function isUserLoggedIn(): bool
75  {
76  return !$this->container->user()->isAnonymous() && $this->container->user()->getId() !== 0;
77  }
78 
79  public function isPublicSectionActive(): bool
80  {
81  return (bool) ($this->container->settings()->get('pub_section') ?? false);
82  }
83 }
checkPermission(string $permission, int $ref_id)
Definition: Context.php:54
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:35
$container
Definition: wac.php:36
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$ref_id
Definition: ltiauth.php:65
__construct(private Container $container)
Definition: Context.php:30
Builds data types.
Definition: Factory.php:35
exists(int $ref_id)
Definition: Context.php:64
getParentRefId(int $ref_id)
Definition: Context.php:59