ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilCategoryConditionController.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
27 {
28  public function isContainerConditionController(int $a_container_ref_id): bool
29  {
30  return false;
31  }
32 
33  public function getConditionSetForRepositoryObject(int $a_container_child_ref_id): ilConditionSet
34  {
35  global $DIC;
36 
37  $f = $DIC->conditions()->factory();
38 
39  $conditions = [];
40  return $f->set($conditions);
41  }
42 }
Condition set Note: This object currently focuses on repository objects as targets.
getConditionSetForRepositoryObject(int $a_container_child_ref_id)
Returns condition set for a repository object which is children under a container that controls the c...
Interface for containers that take over control of conditions for repository object targets...
global $DIC
Definition: feed.php:28
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
isContainerConditionController(int $a_container_ref_id)
Returns true, if the a container controls the conditions of its childrens.