| ILIAS
    Release_4_4_x_branch Revision 61816
    | 
Handles conditions for accesses to different ILIAS objects. More...
 Collaboration diagram for ilConditionHandler:
 Collaboration diagram for ilConditionHandler:| Public Member Functions | |
| ilConditionHandler () | |
| constructor  public | |
| setReferenceHandlingType ($a_type) | |
| set reference handling type | |
| getReferenceHandlingType () | |
| get reference handling type | |
| setErrorMessage ($a_msg) | |
| getErrorMessage () | |
| setTargetRefId ($a_target_ref_id) | |
| set target ref id | |
| getTargetRefId () | |
| get target ref id | |
| setTargetObjId ($a_target_obj_id) | |
| set target object id | |
| getTargetObjId () | |
| get target obj id | |
| setTargetType ($a_target_type) | |
| set target object type | |
| getTargetType () | |
| get target obj type | |
| setTriggerRefId ($a_trigger_ref_id) | |
| set trigger ref id | |
| getTriggerRefId () | |
| get target ref id | |
| setTriggerObjId ($a_trigger_obj_id) | |
| set trigger object id | |
| getTriggerObjId () | |
| get trigger obj id | |
| setTriggerType ($a_trigger_type) | |
| set trigger object type | |
| getTriggerType () | |
| get trigger obj type | |
| setOperator ($a_operator) | |
| set operator | |
| getOperator () | |
| get operator | |
| setValue ($a_value) | |
| set value | |
| getValue () | |
| get value | |
| setObligatory ($a_obl) | |
| Set obligatory status. | |
| getObligatory () | |
| Get obligatory status. | |
| enableAutomaticValidation ($a_validate=true) | |
| enable automated validation | |
| getTriggerTypes () | |
| get all possible trigger types NOT STATIC  public | |
| getOperatorsByTargetType ($a_type) | |
| storeCondition () | |
| store new condition in database NOT STATIC  public | |
| checkExists () | |
| updateCondition ($a_id) | |
| update condition | |
| delete ($a_ref_id) | |
| delete all trigger and target entries This method is called from ilObject::delete() if an object os removed from trash | |
| deleteByObjId ($a_obj_id) | |
| delete all trigger and target entries This method is called from ilObject::delete() if an object is removed from trash | |
| deleteCondition ($a_id) | |
| delete condition | |
| preloadConditionsForTargetRecords ($a_type, $a_obj_ids) | |
| Preload conditions for target records. | |
| _getCondition ($a_id) | |
| _checkCondition ($a_id, $a_usr_id=0) | |
| checks wether a single condition is fulfilled every trigger object type must implement a static method _checkCondition($a_operator, $a_value) | |
| _checkAllConditionsOfTarget ($a_target_ref_id, $a_target_id, $a_target_type="", $a_usr_id=0) | |
| checks wether all conditions of a target object are fulfilled | |
| validate () | |
| checkCircle ($a_ref_id, $a_obj_id) | |
| Static Public Member Functions | |
| static | _isReferenceHandlingOptional ($a_type) | 
| is reference handling optional | |
| static | _adjustMovedObjectConditions ($a_ref_id) | 
| In the moment it is not allowed to create preconditions on objects that are located outside of a course. | |
| static | _getDistinctTargetRefIds () | 
| Get all target ref ids. | |
| static | _deleteTargetConditionsByRefId ($a_target_ref_id) | 
| Delete conditions by target ref id Note: only conditions on the target type are deleted Conditions on e.g chapters are not handled. | |
| static | updateObligatory ($a_id, $a_status) | 
| Toggle condition obligatory status. | |
| _getConditionsOfTrigger ($a_trigger_obj_type, $a_trigger_id) | |
| get all conditions of trigger object | |
| static | _getConditionsOfTarget ($a_target_ref_id, $a_target_obj_id, $a_target_type="") | 
| get all conditions of target object | |
| static | getOptionalConditionsOfTarget ($a_target_ref_id, $a_target_obj_id, $a_obj_type= '') | 
| Get optional conditions. | |
| static | calculateRequiredTriggers ($a_target_ref_id, $a_target_obj_id, $a_target_obj_type= '', $a_force_update=false) | 
| calculate number of obligatory items | |
| static | saveNumberOfRequiredTriggers ($a_target_ref_id, $a_target_obj_id, $a_num) | 
| Save number of obigatory triggers. | |
| Data Fields | |
| const | UNIQUE_CONDITIONS = 1 | 
| const | SHARED_CONDITIONS = 0 | 
| $db | |
| $lng | |
| $error_message | |
| $target_obj_id | |
| $target_ref_id | |
| $target_type | |
| $trigger_obj_id | |
| $trigger_ref_id | |
| $trigger_type | |
| $operator | |
| $value | |
| $validation | |
| $conditions | |
| Static Public Attributes | |
| static | $cond_for_target_cache = array() | 
| static | $cond_target_rows = array() | 
| Private Attributes | |
| $obligatory = true | |
Handles conditions for accesses to different ILIAS objects.
A condition consists of four elements:
If a condition is fulfilled for a certain user, (s)he may access the target object. This first implementation handles only one access type per object, which is usually "read" access. A possible future extension may implement different access types.
The condition data is stored in the database table "condition" (Note: This table must not be accessed directly from other classes. The data should be accessed via the interface of class ilCondition.) cond_id INT condition id trigger_obj_type VARCHAR(10) "crs" | "tst" | "qst", ... trigger_id INT obj id of trigger object operator varchar(10 "=", "<", ">", ">=", "<=", "passed", "contains", ... value VARCHAR(10) optional value target_obj_type VARCHAR(10) "lm" | "frm" | "st" | "pg", ... target_id object or reference id of target object
Trigger objects are always stored with their object id (if a test has been passed by a user, he doesn't need to repeat it in other contexts. But target objects are usually stored with their reference id if available, otherwise, if they are non-referenced objects (e.g. (survey) questions) they are stored with their object id.
Stefan Meyer 10-08-2004 In addition we store the ref_id of the trigger object to allow the target object to link to the triggered object. But it's not possible to assign two or more linked (same obj_id) triggered objects to a target object
Examples:
Learning module 5 may only be accessed, if test 6 has been passed: trigger_obj_type "tst" trigger_id 6 (object id) trigger_ref_id 117 operator "passed" value target_obj_type "lm" target_id 5 (reference id)
Survey question 10 should only be presented, if survey question 8 is answered with a value greater than 4. trigger_obj_type "qst" trigger_id 8 (question (instance) object id) trigger_ref_id 117 operator ">" value "4" target_obj_type "lm" target_id 10 (question (instance) object id)
Definition at line 66 of file class.ilConditionHandler.php.
| 
 | static | 
In the moment it is not allowed to create preconditions on objects that are located outside of a course.
Therefore, after moving an object: check for parent type 'crs'. if that fails delete preconditions
public
| int | reference id of moved object | 
Definition at line 137 of file class.ilConditionHandler.php.
References $conditions, _deleteTargetConditionsByRefId(), and _getDistinctTargetRefIds().
Referenced by ilSoapObjectAdministration\moveObject(), ilContainerGUI\pasteObject(), and ilContainerGUI\performPasteIntoMultipleObjectsObject().
 Here is the call graph for this function:
 Here is the call graph for this function: Here is the caller graph for this function:
 Here is the caller graph for this function:| ilConditionHandler::_checkAllConditionsOfTarget | ( | $a_target_ref_id, | |
| $a_target_id, | |||
| $a_target_type = "", | |||
| $a_usr_id = 0 | |||
| ) | 
checks wether all conditions of a target object are fulfilled
Definition at line 856 of file class.ilConditionHandler.php.
References $conditions, $ilBench, $ilUser, _checkCondition(), _getConditionsOfTarget(), calculateRequiredTriggers(), ilMemberViewSettings\getInstance(), and getOptionalConditionsOfTarget().
Referenced by ilCourseObjectivePresentationGUI\__showLearningMaterials(), ilCourseObjectivePresentationGUI\__showOtherResources(), ilCourseObjectivePresentationGUI\__showTests(), ilObjContentObject\_checkPreconditionsOfPage(), ilAccessHandler\doConditionCheck(), ilRepositoryExplorerGUI\getChildsOfNode(), ilObjCourseListGUI\initItem(), ilObjCourseReferenceListGUI\initItem(), ilShopRepositoryExplorer\isClickable(), ilRepositoryExplorer\isClickable(), ilRepositoryExplorerGUI\isNodeClickable(), ilShopRepositoryExplorer\showChilds(), ilRepositoryExplorer\showChilds(), ilCourseContentGUI\showStartObjects(), and ilObjCourseGUI\showStartObjects().
 Here is the call graph for this function:
 Here is the call graph for this function: Here is the caller graph for this function:
 Here is the caller graph for this function:| ilConditionHandler::_checkCondition | ( | $a_id, | |
| $a_usr_id = 0 | |||
| ) | 
checks wether a single condition is fulfilled every trigger object type must implement a static method _checkCondition($a_operator, $a_value)
Definition at line 730 of file class.ilConditionHandler.php.
References $ilUser, _getCondition(), and ilLPStatus\_hasUserCompleted().
Referenced by _checkAllConditionsOfTarget(), ilObjContentObject\_getMissingPreconditionsOfPage(), ilObjContentObject\_getMissingPreconditionsTopChapter(), and ilObjectListGUI\parseConditions().
 Here is the call graph for this function:
 Here is the call graph for this function: Here is the caller graph for this function:
 Here is the caller graph for this function:| 
 | static | 
Delete conditions by target ref id Note: only conditions on the target type are deleted Conditions on e.g chapters are not handled.
public
| int | ref id of target | 
Definition at line 191 of file class.ilConditionHandler.php.
Referenced by _adjustMovedObjectConditions(), and ilRBACTest\testConditions().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| ilConditionHandler::_getCondition | ( | $a_id | ) | 
Definition at line 696 of file class.ilConditionHandler.php.
References $query, $res, $row, and DB_FETCHMODE_OBJECT.
Referenced by _checkCondition(), ilConditionHandlerInterface\askDelete(), ilConditionHandlerInterface\edit(), ilConditionHandlerInterface\initFormCondition(), ilRBACTest\testConditions(), and ilConditionHandlerInterface\updateCondition().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| 
 | static | 
get all conditions of target object
| $a_target_ref_id | target reference id | 
| $a_target_obj_id | target object id | 
| $a_target_type | target object type (must be provided only if object is not derived from ilObject and therefore stored in object_data; this is e.g. the case for chapters (type = "st")) | 
Definition at line 603 of file class.ilConditionHandler.php.
References $conditions, $ilBench, $query, $res, $row, and ilObject\_lookupType().
Referenced by ilConditionHandlerInterface\__getConditionsOfTarget(), _checkAllConditionsOfTarget(), ilObjCourseGrouping\_checkGroupingDependencies(), ilObjCourseGrouping\_getGroupingCourseIds(), ilObjCourseGrouping\_getGroupingItems(), ilObjContentObject\_getMissingPreconditionsOfPage(), ilObjContentObject\_getMissingPreconditionsTopChapter(), calculateRequiredTriggers(), checkCircle(), ilObject\cloneDependencies(), ilAccessHandler\doConditionCheck(), getOptionalConditionsOfTarget(), ilObjectListGUI\insertPreconditions(), ilConditionHandlerInterface\listConditions(), ilConditionHandlerInterface\saveObligatoryList(), ilConditionHandlerInterface\saveObligatorySettings(), ilConditionHandlerInterface\showObligatoryForm(), and ilRBACTest\testConditions().
 Here is the call graph for this function:
 Here is the call graph for this function: Here is the caller graph for this function:
 Here is the caller graph for this function:| 
 | static | 
get all conditions of trigger object
Definition at line 563 of file class.ilConditionHandler.php.
References $conditions, $query, $res, $row, and DB_FETCHMODE_OBJECT.
Referenced by ilObjCourseGrouping\_checkGroupingDependencies(), ilObjCourseGrouping\_getGroupingCourseIds(), ilObjCourseGrouping\_getGroupingItems(), ilScormLP\checkSCORMPreconditions(), ilObjCourseGrouping\deassign(), ilObjCourseGrouping\getAssignedItems(), and ilRBACTest\testConditions().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| 
 | static | 
Get all target ref ids.
public
Definition at line 168 of file class.ilConditionHandler.php.
References $query, $res, $row, and DB_FETCHMODE_OBJECT.
Referenced by _adjustMovedObjectConditions(), and ilRBACTest\testConditions().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| 
 | static | 
is reference handling optional
public
| string | target type ILIAS obj type | 
Definition at line 115 of file class.ilConditionHandler.php.
Referenced by ilConditionHandlerInterface\initFormCondition().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| 
 | static | 
calculate number of obligatory items
| int | $a_target_ref_id | |
| int | $a_target_obj_id | 
Definition at line 799 of file class.ilConditionHandler.php.
References $result, _getConditionsOfTarget(), getOptionalConditionsOfTarget(), and saveNumberOfRequiredTriggers().
Referenced by _checkAllConditionsOfTarget(), ilObjectListGUI\parseConditions(), ilConditionHandlerInterface\saveObligatoryList(), and ilConditionHandlerInterface\showObligatoryForm().
 Here is the call graph for this function:
 Here is the call graph for this function: Here is the caller graph for this function:
 Here is the caller graph for this function:| ilConditionHandler::checkCircle | ( | $a_ref_id, | |
| $a_obj_id | |||
| ) | 
Definition at line 945 of file class.ilConditionHandler.php.
References _getConditionsOfTarget(), and getOperator().
Referenced by validate().
 Here is the call graph for this function:
 Here is the call graph for this function: Here is the caller graph for this function:
 Here is the caller graph for this function:| ilConditionHandler::checkExists | ( | ) | 
Definition at line 463 of file class.ilConditionHandler.php.
References $query, $res, getOperator(), getTargetObjId(), getTargetRefId(), getTriggerObjId(), and getTriggerRefId().
 Here is the call graph for this function:
 Here is the call graph for this function:| ilConditionHandler::delete | ( | $a_ref_id | ) | 
delete all trigger and target entries This method is called from ilObject::delete() if an object os removed from trash
Definition at line 518 of file class.ilConditionHandler.php.
| ilConditionHandler::deleteByObjId | ( | $a_obj_id | ) | 
delete all trigger and target entries This method is called from ilObject::delete() if an object is removed from trash
Definition at line 533 of file class.ilConditionHandler.php.
| ilConditionHandler::deleteCondition | ( | $a_id | ) | 
delete condition
Definition at line 548 of file class.ilConditionHandler.php.
Referenced by storeCondition().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| ilConditionHandler::enableAutomaticValidation | ( | $a_validate = true | ) | 
enable automated validation
Definition at line 385 of file class.ilConditionHandler.php.
| ilConditionHandler::getErrorMessage | ( | ) | 
Definition at line 230 of file class.ilConditionHandler.php.
References $error_message.
| ilConditionHandler::getObligatory | ( | ) | 
Get obligatory status.
Definition at line 376 of file class.ilConditionHandler.php.
References $obligatory.
Referenced by storeCondition(), and updateCondition().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| ilConditionHandler::getOperator | ( | ) | 
get operator
Definition at line 342 of file class.ilConditionHandler.php.
References $operator.
Referenced by checkCircle(), checkExists(), storeCondition(), and updateCondition().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| ilConditionHandler::getOperatorsByTargetType | ( | $a_type | ) | 
Definition at line 401 of file class.ilConditionHandler.php.
| 
 | static | 
Get optional conditions.
| int | $a_target_ref_id | |
| int | $a_target_obj_id | 
Definition at line 776 of file class.ilConditionHandler.php.
References $conditions, and _getConditionsOfTarget().
Referenced by _checkAllConditionsOfTarget(), calculateRequiredTriggers(), ilConditionHandlerInterface\listConditions(), ilObjectListGUI\parseConditions(), ilConditionHandlerInterface\saveObligatorySettings(), and ilConditionHandlerInterface\showObligatoryForm().
 Here is the call graph for this function:
 Here is the call graph for this function: Here is the caller graph for this function:
 Here is the caller graph for this function:| ilConditionHandler::getReferenceHandlingType | ( | ) | 
get reference handling type
public
Definition at line 220 of file class.ilConditionHandler.php.
Referenced by storeCondition(), and updateCondition().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| ilConditionHandler::getTargetObjId | ( | ) | 
get target obj id
Definition at line 262 of file class.ilConditionHandler.php.
References $target_obj_id.
Referenced by checkExists(), and storeCondition().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| ilConditionHandler::getTargetRefId | ( | ) | 
get target ref id
Definition at line 246 of file class.ilConditionHandler.php.
References $target_ref_id.
Referenced by checkExists(), storeCondition(), updateCondition(), and validate().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| ilConditionHandler::getTargetType | ( | ) | 
get target obj type
Definition at line 278 of file class.ilConditionHandler.php.
References $target_type.
Referenced by storeCondition().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| ilConditionHandler::getTriggerObjId | ( | ) | 
get trigger obj id
Definition at line 310 of file class.ilConditionHandler.php.
References $trigger_obj_id.
Referenced by checkExists(), and storeCondition().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| ilConditionHandler::getTriggerRefId | ( | ) | 
get target ref id
Definition at line 294 of file class.ilConditionHandler.php.
References $trigger_ref_id.
Referenced by checkExists(), storeCondition(), and validate().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| ilConditionHandler::getTriggerType | ( | ) | 
get trigger obj type
Definition at line 326 of file class.ilConditionHandler.php.
References $trigger_type.
Referenced by storeCondition().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| ilConditionHandler::getTriggerTypes | ( | ) | 
get all possible trigger types NOT STATIC public
Definition at line 395 of file class.ilConditionHandler.php.
| ilConditionHandler::getValue | ( | ) | 
get value
Definition at line 358 of file class.ilConditionHandler.php.
References $value.
Referenced by storeCondition(), and updateCondition().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| ilConditionHandler::ilConditionHandler | ( | ) | 
| ilConditionHandler::preloadConditionsForTargetRecords | ( | $a_type, | |
| $a_obj_ids | |||
| ) | 
Preload conditions for target records.
| @return | 
Definition at line 670 of file class.ilConditionHandler.php.
Referenced by ilObjectListGUIPreloader\preload().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| 
 | static | 
Save number of obigatory triggers.
| int | $a_target_ref_id | |
| int | $a_target_obj_id | 
Definition at line 841 of file class.ilConditionHandler.php.
References $query.
Referenced by calculateRequiredTriggers(), and ilConditionHandlerInterface\saveObligatorySettings().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| ilConditionHandler::setErrorMessage | ( | $a_msg | ) | 
Definition at line 226 of file class.ilConditionHandler.php.
Referenced by validate().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| ilConditionHandler::setObligatory | ( | $a_obl | ) | 
Set obligatory status.
| bool | $a_obl | 
Definition at line 367 of file class.ilConditionHandler.php.
| ilConditionHandler::setOperator | ( | $a_operator | ) | 
set operator
Definition at line 334 of file class.ilConditionHandler.php.
| ilConditionHandler::setReferenceHandlingType | ( | $a_type | ) | 
set reference handling type
| int | public | 
Definition at line 209 of file class.ilConditionHandler.php.
| ilConditionHandler::setTargetObjId | ( | $a_target_obj_id | ) | 
set target object id
Definition at line 254 of file class.ilConditionHandler.php.
| ilConditionHandler::setTargetRefId | ( | $a_target_ref_id | ) | 
set target ref id
Definition at line 238 of file class.ilConditionHandler.php.
| ilConditionHandler::setTargetType | ( | $a_target_type | ) | 
set target object type
Definition at line 270 of file class.ilConditionHandler.php.
| ilConditionHandler::setTriggerObjId | ( | $a_trigger_obj_id | ) | 
set trigger object id
Definition at line 302 of file class.ilConditionHandler.php.
| ilConditionHandler::setTriggerRefId | ( | $a_trigger_ref_id | ) | 
set trigger ref id
Definition at line 286 of file class.ilConditionHandler.php.
| ilConditionHandler::setTriggerType | ( | $a_trigger_type | ) | 
set trigger object type
Definition at line 318 of file class.ilConditionHandler.php.
| ilConditionHandler::setValue | ( | $a_value | ) | 
set value
Definition at line 350 of file class.ilConditionHandler.php.
| ilConditionHandler::storeCondition | ( | ) | 
store new condition in database NOT STATIC public
Definition at line 431 of file class.ilConditionHandler.php.
References $query, $res, deleteCondition(), getObligatory(), getOperator(), getReferenceHandlingType(), getTargetObjId(), getTargetRefId(), getTargetType(), getTriggerObjId(), getTriggerRefId(), getTriggerType(), getValue(), and validate().
 Here is the call graph for this function:
 Here is the call graph for this function:| ilConditionHandler::updateCondition | ( | $a_id | ) | 
update condition
Definition at line 480 of file class.ilConditionHandler.php.
References $query, $res, getObligatory(), getOperator(), getReferenceHandlingType(), getTargetRefId(), and getValue().
 Here is the call graph for this function:
 Here is the call graph for this function:| 
 | static | 
Toggle condition obligatory status.
| int | $a_id | |
| bool | $a_status | 
Definition at line 502 of file class.ilConditionHandler.php.
Referenced by ilConditionHandlerInterface\saveObligatoryList(), and ilConditionHandlerInterface\saveObligatorySettings().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| ilConditionHandler::validate | ( | ) | 
Definition at line 909 of file class.ilConditionHandler.php.
References $query, $res, checkCircle(), ilObjectFactory\getInstanceByRefId(), getTargetRefId(), getTriggerRefId(), and setErrorMessage().
Referenced by storeCondition().
 Here is the call graph for this function:
 Here is the call graph for this function: Here is the caller graph for this function:
 Here is the caller graph for this function:| 
 | static | 
Definition at line 90 of file class.ilConditionHandler.php.
| 
 | static | 
Definition at line 91 of file class.ilConditionHandler.php.
| ilConditionHandler::$conditions | 
Definition at line 89 of file class.ilConditionHandler.php.
Referenced by _adjustMovedObjectConditions(), _checkAllConditionsOfTarget(), _getConditionsOfTarget(), _getConditionsOfTrigger(), and getOptionalConditionsOfTarget().
| ilConditionHandler::$db | 
Definition at line 71 of file class.ilConditionHandler.php.
| ilConditionHandler::$error_message | 
Definition at line 75 of file class.ilConditionHandler.php.
Referenced by getErrorMessage().
| ilConditionHandler::$lng | 
Definition at line 72 of file class.ilConditionHandler.php.
Referenced by ilConditionHandler().
| 
 | private | 
Definition at line 87 of file class.ilConditionHandler.php.
Referenced by getObligatory().
| ilConditionHandler::$operator | 
Definition at line 83 of file class.ilConditionHandler.php.
Referenced by getOperator().
| ilConditionHandler::$target_obj_id | 
Definition at line 77 of file class.ilConditionHandler.php.
Referenced by getTargetObjId().
| ilConditionHandler::$target_ref_id | 
Definition at line 78 of file class.ilConditionHandler.php.
Referenced by getTargetRefId().
| ilConditionHandler::$target_type | 
Definition at line 79 of file class.ilConditionHandler.php.
Referenced by getTargetType().
| ilConditionHandler::$trigger_obj_id | 
Definition at line 80 of file class.ilConditionHandler.php.
Referenced by getTriggerObjId().
| ilConditionHandler::$trigger_ref_id | 
Definition at line 81 of file class.ilConditionHandler.php.
Referenced by getTriggerRefId().
| ilConditionHandler::$trigger_type | 
Definition at line 82 of file class.ilConditionHandler.php.
Referenced by getTriggerType().
| ilConditionHandler::$validation | 
Definition at line 85 of file class.ilConditionHandler.php.
| ilConditionHandler::$value | 
Definition at line 84 of file class.ilConditionHandler.php.
Referenced by getValue().
| const ilConditionHandler::SHARED_CONDITIONS = 0 | 
Definition at line 69 of file class.ilConditionHandler.php.
Referenced by ilConditionHandlerInterface\initFormCondition().
| const ilConditionHandler::UNIQUE_CONDITIONS = 1 | 
Definition at line 68 of file class.ilConditionHandler.php.
Referenced by ilConditionHandlerInterface\assign(), ilConditionHandlerInterface\initFormCondition(), and ilConditionHandlerInterface\updateCondition().