Builder::enable_query_execution( bool $execute_queries = true )
Method to enable query execution or not.
Contents
Parameters
- $execute_queries
-
(bool) (Optional) If the query should be executed or not against the Database.
Default value: true
Source
File: src/Events/Custom_Tables/V1/Models/Builder.php
public function enable_query_execution( $execute_queries = true ) {
$this->execute_queries = $execute_queries;
return $this;
}
Changelog
| Version | Description |
|---|---|
| 6.0.0 | Introduced. |