ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilUIService.php
Go to the documentation of this file.
1<?php
2
20use Psr\Http\Message\ServerRequestInterface;
21
29{
31
32 public function __construct(ServerRequestInterface $request, UIServices $ui)
33 {
34 $this->_deps = new ilUIServiceDependencies($ui, new ilUIFilterRequestAdapter($request));
35 }
36
37 public function filter(): ilUIFilterService
38 {
39 return new ilUIFilterService($this, $this->_deps);
40 }
41}
Provides fluid interface to RBAC services.
Definition: UIServices.php:25
Filter service.
ilUIServiceDependencies $_deps
__construct(ServerRequestInterface $request, UIServices $ui)