ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
ILIAS\Refinery\Logical\Group Class Reference
+ Collaboration diagram for ILIAS\Refinery\Logical\Group:

Public Member Functions

 __construct (Factory $dataFactory, \ilLanguage $language)
 
 logicalOr (array $other)
 
 not (Constraint $constraint)
 
 parallel (array $constraints)
 
 sequential (array $constraints)
 

Private Attributes

 $dataFactory
 
 $language
 

Detailed Description

Author
Niels Theen nthee.nosp@m.n@da.nosp@m.tabay.nosp@m..de

Definition at line 16 of file Group.php.

Constructor & Destructor Documentation

◆ __construct()

ILIAS\Refinery\Logical\Group::__construct ( Factory  $dataFactory,
\ilLanguage  $language 
)

Definition at line 28 of file Group.php.

References ILIAS\Refinery\Logical\Group\$dataFactory, ILIAS\Refinery\Logical\Group\$language, and language().

29  {
30  $this->dataFactory = $dataFactory;
31  $this->language = $language;
32  }
language()
Definition: language.php:2
+ Here is the call graph for this function:

Member Function Documentation

◆ logicalOr()

ILIAS\Refinery\Logical\Group::logicalOr ( array  $other)
Parameters
array$other
Returns
LogicalOr

Definition at line 38 of file Group.php.

References language().

38  : LogicalOr
39  {
40  return new LogicalOr($other, $this->dataFactory, $this->language);
41  }
language()
Definition: language.php:2
+ Here is the call graph for this function:

◆ not()

ILIAS\Refinery\Logical\Group::not ( Constraint  $constraint)
Parameters
Constraint$constraint
Returns
Not

Definition at line 47 of file Group.php.

References language().

47  : Not
48  {
49  return new Not($constraint, $this->dataFactory, $this->language);
50  }
language()
Definition: language.php:2
+ Here is the call graph for this function:

◆ parallel()

ILIAS\Refinery\Logical\Group::parallel ( array  $constraints)
Parameters
array$constraints
Returns
Parallel

Definition at line 56 of file Group.php.

References language().

56  : Parallel
57  {
58  return new Parallel($constraints, $this->dataFactory, $this->language);
59  }
language()
Definition: language.php:2
+ Here is the call graph for this function:

◆ sequential()

ILIAS\Refinery\Logical\Group::sequential ( array  $constraints)
Parameters
array$constraints
Returns
Sequential

Definition at line 65 of file Group.php.

References language().

65  : Sequential
66  {
67  return new Sequential($constraints, $this->dataFactory, $this->language);
68  }
language()
Definition: language.php:2
+ Here is the call graph for this function:

Field Documentation

◆ $dataFactory

ILIAS\Refinery\Logical\Group::$dataFactory
private

Definition at line 21 of file Group.php.

Referenced by ILIAS\Refinery\Logical\Group\__construct().

◆ $language

ILIAS\Refinery\Logical\Group::$language
private

Definition at line 26 of file Group.php.

Referenced by ILIAS\Refinery\Logical\Group\__construct().


The documentation for this class was generated from the following file: