Метод |
Описание |
|
getExpression ( ) : string |
Gets the compiled expression as a string. This will look
something like (alias.key = :placeholder). |
|
getExpressionObject ( ) : CompositeExpression |
Returns the actual object of the expression. This is generally
only needed for on the fly modification, to get the compiled
expression use getExpression(). |
|
getKey ( ) : string |
Getter for key. |
|
getParameters ( ) : array |
Returns the array of parameters attached to this filter. These are
normally used to replace placeholders at compile time. |
|
hasParameter ( string $param ) : boolean |
Helper method to check if parameters are set for a specific key. |
|
setExpression ( CompositeExpression $expression ) |
Allows replacing the expression object with a modified one. |
|
setKey ( string $key ) |
Sets the key that this filter affects. |
|
setParameter ( string $param, mixed $value ) |
Allows setting a parameter for a single key. |
|
setParameters ( array $parameters ) |
Setter method to replace parameters. |
|