protected PagerSelectExtender::ensureElement()
Ensure that there is an element associated with this query. If an element was not specified previously, then the value of the $maxElement counter is taken, after which the counter is incremented.
After running this method, access $this->element to get the element for this query.
File
- core/lib/Drupal/Core/Database/Query/PagerSelectExtender.php, line 91
Class
- PagerSelectExtender
- Query extender for pager queries.
Namespace
Drupal\Core\Database\Query
Code
1 2 3 4 5 | protected function ensureElement() { if (!isset( $this ->element)) { $this ->element = self:: $maxElement ++; } } |
Please login to continue.