PHP Class Neos\Eel\FlowQuery\Operations\AbstractOperation

Inheritance: implements Neos\Eel\FlowQuery\OperationInterface
Datei anzeigen Open project: neos/flow-development-collection

Protected Properties

Property Type Description
$final boolean If TRUE, the operation is final, i.e. directly executed.
$priority integer The priority of operations. higher numbers override lower ones.
$shortName string The short name of the operation

Public Methods

Method Description
canEvaluate ( $context ) : boolean
getPriority ( ) : integer
getShortName ( ) : string
isFinal ( ) : boolean

Method Details

canEvaluate() public method

public canEvaluate ( $context ) : boolean
return boolean TRUE if the operation can be applied onto the $context, FALSE otherwise

getPriority() public static method

public static getPriority ( ) : integer
return integer the priority of the operation

getShortName() public static method

public static getShortName ( ) : string
return string the short name of the operation

isFinal() public static method

public static isFinal ( ) : boolean
return boolean TRUE if the operation is final, FALSE otherwise

Property Details

$final protected_oe static_oe property

If TRUE, the operation is final, i.e. directly executed.
protected static bool $final
return boolean

$priority protected_oe static_oe property

The priority of operations. higher numbers override lower ones.
protected static int $priority
return integer

$shortName protected_oe static_oe property

The short name of the operation
protected static string $shortName
return string