RNGConditionInterface.php in RNG - Events and Registrations 8.2
Same filename and directory in other branches
Namespace
Drupal\rngFile
src/RNGConditionInterface.phpView source
<?php
namespace Drupal\rng;
/**
* Allow a condition to modify an Entity Query.
*/
interface RNGConditionInterface {
/**
* Modify a query with condition configuration.
*
* This does not rely on any contexts, only valid configuration.
*
* @param \Drupal\Core\Entity\Query\QueryInterface $query
* The query object.
*/
public function alterQuery(&$query);
}
Interfaces
Name | Description |
---|---|
RNGConditionInterface | Allow a condition to modify an Entity Query. |