ILIAS  trunk Revision v11.0_alpha-2638-g80c1d007f79
ILIAS\MetaData\Search\Clauses Namespace Reference

Namespaces

 

Data Structures

class  Clause
 
interface  ClauseInterface
 
class  ClauseWithPropertiesAndFactoryTest
 
class  Factory
 
interface  FactoryInterface
 
class  NullClause
 
class  NullFactory
 

Enumerations

enum  Mode : string { ENDS_WITH = 'ends_with' }
 
enum  Operator : string { OR = 'or' }
 

Enumeration Type Documentation

◆ Mode

Enumerator
ENDS_WITH 

Definition at line 23 of file Mode.php.

23  : string
24 {
25  case EQUALS = 'equals';
26  case CONTAINS = 'contains';
27  case STARTS_WITH = 'starts_with';
28  case ENDS_WITH = 'ends_with';
29 }

◆ Operator

Enumerator
OR 

Definition at line 23 of file Operator.php.

23  : string
24 {
25  case AND = 'and';
26  case OR = 'or';
27 }