ILIAS  trunk Revision v11.0_alpha-2645-g16283d3b3f8
ILIAS\Refinery\Logical\Group Class Reference
+ Collaboration diagram for ILIAS\Refinery\Logical\Group:

Public Member Functions

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

Private Attributes

Factory $dataFactory
 
ILIAS Language Language $language
 

Detailed Description

Definition at line 27 of file Group.php.

Constructor & Destructor Documentation

◆ __construct()

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

Definition at line 32 of file Group.php.

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

33  {
34  $this->dataFactory = $dataFactory;
35  $this->language = $language;
36  }
ILIAS Language Language $language
Definition: Group.php:30
language()
description: > Example for rendring a language glyph.
Definition: language.php:41
+ 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 42 of file Group.php.

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

43  {
44  return new LogicalOr($other, $this->dataFactory, $this->language);
45  }
language()
description: > Example for rendring a language glyph.
Definition: language.php:41
+ Here is the call graph for this function:

◆ not()

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

Definition at line 47 of file Group.php.

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

48  {
49  return new Not($constraint, $this->dataFactory, $this->language);
50  }
language()
description: > Example for rendring a language glyph.
Definition: language.php:41
+ Here is the call graph for this function:

◆ parallel()

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

Definition at line 56 of file Group.php.

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

57  {
58  return new Parallel($constraints, $this->dataFactory, $this->language);
59  }
language()
description: > Example for rendring a language glyph.
Definition: language.php:41
+ Here is the call graph for this function:

◆ sequential()

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

Definition at line 65 of file Group.php.

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

66  {
67  return new Sequential($constraints, $this->dataFactory, $this->language);
68  }
language()
description: > Example for rendring a language glyph.
Definition: language.php:41
+ Here is the call graph for this function:

Field Documentation

◆ $dataFactory

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

Definition at line 29 of file Group.php.

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

◆ $language

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

Definition at line 30 of file Group.php.

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


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