public TableSortExtender::__construct(SelectInterface $query, Connection $connection)
Overrides SelectExtender::__construct
File
- core/lib/Drupal/Core/Database/Query/TableSortExtender.php, line 17
Class
- TableSortExtender
- Query extender class for tablesort queries.
Namespace
Drupal\Core\Database\Query
Code
1 2 3 4 5 6 7 8 | public function __construct(SelectInterface $query , Connection $connection ) { parent::__construct( $query , $connection ); // Add convenience tag to mark that this is an extended query. We have to // do this in the constructor to ensure that it is set before preExecute() // gets called. $this ->addTag( 'tablesort' ); } |
Please login to continue.