ILIAS  release_8 Revision v8.23
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

Factory $dataFactory
 
ilLanguage $language
 

Detailed Description

Definition at line 28 of file Group.php.

Constructor & Destructor Documentation

◆ __construct()

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

Definition at line 33 of file Group.php.

References ILIAS\Refinery\Logical\Group\$dataFactory, ILIAS\Refinery\Logical\Group\$language, and ILIAS\UI\examples\Symbol\Glyph\Language\language().

34  {
35  $this->dataFactory = $dataFactory;
36  $this->language = $language;
37  }
+ Here is the call graph for this function:

Member Function Documentation

◆ logicalOr()

ILIAS\Refinery\Logical\Group::logicalOr ( array  $other)
Parameters
Constraint[]$other
Returns
ConstraintInterface

Definition at line 43 of file Group.php.

References ILIAS\UI\examples\Symbol\Glyph\Language\language().

44  {
45  return new LogicalOr($other, $this->dataFactory, $this->language);
46  }
+ Here is the call graph for this function:

◆ not()

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

Definition at line 48 of file Group.php.

References ILIAS\UI\examples\Symbol\Glyph\Language\language().

49  {
50  return new Not($constraint, $this->dataFactory, $this->language);
51  }
+ Here is the call graph for this function:

◆ parallel()

ILIAS\Refinery\Logical\Group::parallel ( array  $constraints)
Parameters
Constraint[]$constraints
Returns
ConstraintInterface

Definition at line 57 of file Group.php.

References ILIAS\UI\examples\Symbol\Glyph\Language\language().

58  {
59  return new Parallel($constraints, $this->dataFactory, $this->language);
60  }
+ Here is the call graph for this function:

◆ sequential()

ILIAS\Refinery\Logical\Group::sequential ( array  $constraints)
Parameters
Constraint[]$constraints
Returns
ConstraintInterface

Definition at line 66 of file Group.php.

References ILIAS\UI\examples\Symbol\Glyph\Language\language().

67  {
68  return new Sequential($constraints, $this->dataFactory, $this->language);
69  }
+ Here is the call graph for this function:

Field Documentation

◆ $dataFactory

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

Definition at line 30 of file Group.php.

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

◆ $language

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

Definition at line 31 of file Group.php.

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


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