You are here

function views_php_plugin_pager::execute_count_query in Views PHP 7.2

Same name and namespace in other branches
  1. 7 plugins/views/views_php_plugin_pager.inc \views_php_plugin_pager::execute_count_query()

Execute the count query, which will be done just prior to the query itself being executed.

File

plugins/views/views_php_plugin_pager.inc, line 69

Class

views_php_plugin_pager
A (fake) pager plugin that wraps around the actual pager.

Code

function execute_count_query(&$count_query) {
  $this->wrapped
    ->execute_count_query($count_query);
}