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