public Condition::compiled()
Check whether a condition has been previously compiled.
Return value
TRUE if the condition has been previously compiled.
Overrides ConditionInterface::compiled
File
- core/lib/Drupal/Core/Database/Query/Condition.php, line 247
Class
- Condition
- Generic class for a series of conditions in a query.
Namespace
Drupal\Core\Database\Query
Code
public function compiled() { return !$this->changed; }
Please login to continue.