views_php_plugin_query.inc in Views PHP 7
Same filename and directory in other branches
File
plugins/views/views_php_plugin_query.incView source
<?php
/**
* A (fake) pager plugin that wraps around the actual query.
*
* @ingroup views_query_plugins
*/
class views_php_plugin_query extends views_php_plugin_wrapper {
/**
* Implements views_plugin_query#execute().
*/
public function execute(&$view) {
$pager = new views_php_plugin_pager();
$pager
->php_wrap($this->wrapped->pager);
$this->wrapped
->execute($view);
$pager
->php_unwrap();
}
}
Classes
Name | Description |
---|---|
views_php_plugin_query | A (fake) pager plugin that wraps around the actual query. |