45 public function __construct(
int $target_ref_id,
int $target_obj_id,
string $target_type)
49 $this->static_url_service = $DIC[
'static_url'];
50 $this->ui_factory = $DIC->ui()->factory();
51 $this->
lng = $DIC->language();
52 $this->
lng->loadLanguageModule(
'rbac');
60 protected function read(): void
68 foreach ($conditions as $condition) {
70 $row[
'id'] = $condition[
'id'];
72 $link = $this->static_url_service->builder()->build(
76 $row[
'trigger'] = $this->ui_factory->link()->standard(
81 $condition[
'trigger_obj_id'],
82 $condition[
'operator'],
86 if ($condition[
'obligatory']) {
87 $row[
'obligatory'] = $this->ui_factory->symbol()->icon()->custom(
88 'assets/images/standard/icon_checked.svg',
105 [$order_field, $order_direction] = $order->
join([], fn($ret, $key, $value) => [$key, $value]);
106 usort($data, fn(
$a,
$b) =>
$a[$order_field] <=>
$b[$order_field]);
107 if ($order_direction ===
'DESC') {
108 $data = array_reverse($data);
__construct(int $target_ref_id, int $target_obj_id, string $target_type)
StaticURL Services $static_url_service
join($init, callable $fn)
static translateOperator(int $a_obj_id, string $a_operator, string $value='')
Both the subject and the direction need to be specified when expressing an order. ...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupTitle(int $obj_id)
limitData(Range $range, Order $order)
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupType(int $id, bool $reference=false)
A simple class to express a naive range of whole positive numbers.
static _getPersistedConditionsOfTarget(int $a_target_ref_id, int $a_target_obj_id, string $a_target_type="")
get all persisted conditions of target object