ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilOperatorsExpressionMapping.php
Go to the documentation of this file.
1 <?php
2 
27 {
31  private static $mappings = array(
32  iQuestionCondition::PercentageResultExpression => array("<", "<=", "=", ">=", ">", "<>"),
33  iQuestionCondition::NumericResultExpression => array("<", "<=", "=", ">=", ">", "<>"),
40  );
41 
47  public static function getOperatorsByExpression($expression): array
48  {
49  return self::$mappings[$expression];
50  }
51 
52  public static function getAll(): array
53  {
54  return self::$mappings;
55  }
56 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...