Issue #1541684 by Rob Loach, aspilicious: Convert PagerDefault db extender to PSR-0.

8.0.x
catch 2012-06-05 14:42:19 +09:00
parent 2d796cf1a5
commit 92490ed529
25 changed files with 273 additions and 214 deletions

View File

@ -29,10 +29,10 @@ use Drupal\Core\Database\Query\Condition;
* inherits much of its syntax and semantics. * inherits much of its syntax and semantics.
* *
* Most Drupal database SELECT queries are performed by a call to db_query() or * Most Drupal database SELECT queries are performed by a call to db_query() or
* db_query_range(). Module authors should also consider using the PagerDefault * db_query_range(). Module authors should also consider using the
* Extender for queries that return results that need to be presented on * Drupal\Core\Database\Query\PagerSelectExtender for queries that return
* multiple pages, and the Tablesort Extender for generating appropriate queries * results that need to be presented on multiple pages, and the Tablesort
* for sortable tables. * Extender for generating appropriate queries for sortable tables.
* *
* For example, one might wish to return a list of the most recent 10 nodes * For example, one might wish to return a list of the most recent 10 nodes
* authored by a given user. Instead of directly issuing the SQL query * authored by a given user. Instead of directly issuing the SQL query

View File

@ -1,174 +1,10 @@
<?php <?php
use Drupal\Core\Database\Connection;
use Drupal\Core\Database\Query\SelectExtender;
use Drupal\Core\Database\Query\SelectInterface;
/** /**
* @file * @file
* Functions to aid in presenting database results as a set of pages. * Functions to aid in presenting database results as a set of pages.
*/ */
/**
* Query extender for pager queries.
*
* This is the "default" pager mechanism. It creates a paged query with a fixed
* number of entries per page.
*/
class PagerDefault extends SelectExtender {
/**
* The highest element we've autogenerated so far.
*
* @var int
*/
static $maxElement = 0;
/**
* The number of elements per page to allow.
*
* @var int
*/
protected $limit = 10;
/**
* The unique ID of this pager on this page.
*
* @var int
*/
protected $element = NULL;
/**
* The count query that will be used for this pager.
*
* @var SelectQueryInterface
*/
protected $customCountQuery = FALSE;
public function __construct(SelectInterface $query, Connection $connection) {
parent::__construct($query, $connection);
// Add pager tag. Do this here to ensure that it is always added before
// preExecute() is called.
$this->addTag('pager');
}
/**
* Override the execute method.
*
* Before we run the query, we need to add pager-based range() instructions
* to it.
*/
public function execute() {
// 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.
if (!$this->preExecute($this)) {
return NULL;
}
// A NULL limit is the "kill switch" for pager queries.
if (empty($this->limit)) {
return;
}
$this->ensureElement();
$total_items = $this->getCountQuery()->execute()->fetchField();
$current_page = pager_default_initialize($total_items, $this->limit, $this->element);
$this->range($current_page * $this->limit, $this->limit);
// Now that we've added our pager-based range instructions, run the query normally.
return $this->query->execute();
}
/**
* 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.
*/
protected function ensureElement() {
if (!isset($this->element)) {
$this->element = self::$maxElement++;
}
}
/**
* Specify the count query object to use for this pager.
*
* You will rarely need to specify a count query directly. If not specified,
* one is generated off of the pager query itself.
*
* @param SelectQueryInterface $query
* The count query object. It must return a single row with a single column,
* which is the total number of records.
*/
public function setCountQuery(SelectInterface $query) {
$this->customCountQuery = $query;
}
/**
* Retrieve the count query for this pager.
*
* The count query may be specified manually or, by default, taken from the
* query we are extending.
*
* @return SelectQueryInterface
* A count query object.
*/
public function getCountQuery() {
if ($this->customCountQuery) {
return $this->customCountQuery;
}
else {
return $this->query->countQuery();
}
}
/**
* Specify the maximum number of elements per page for this query.
*
* The default if not specified is 10 items per page.
*
* @param $limit
* An integer specifying the number of elements per page. If passed a false
* value (FALSE, 0, NULL), the pager is disabled.
*/
public function limit($limit = 10) {
$this->limit = $limit;
return $this;
}
/**
* Specify the element ID for this pager query.
*
* The element is used to differentiate different pager queries on the same
* page so that they may be operated independently. If you do not specify an
* element, every pager query on the page will get a unique element. If for
* whatever reason you want to explicitly define an element for a given query,
* you may do so here.
*
* Setting the element here also increments the static $maxElement counter,
* which is used for determining the $element when there's none specified.
*
* Note that no collision detection is done when setting an element ID
* explicitly, so it is possible for two pagers to end up using the same ID
* if both are set explicitly.
*
* @param $element
*/
public function element($element) {
$this->element = $element;
if ($element >= self::$maxElement) {
self::$maxElement = $element + 1;
}
return $this;
}
}
/** /**
* Returns the current page being requested for display within a pager. * Returns the current page being requested for display within a pager.
* *
@ -206,10 +42,11 @@ function pager_find_page($element = 0) {
* If the items being displayed result from a database query performed using * If the items being displayed result from a database query performed using
* Drupal's database API, and if you have control over the construction of the * Drupal's database API, and if you have control over the construction of the
* database query, you do not need to call this function directly; instead, you * database query, you do not need to call this function directly; instead, you
* can simply extend the query object with the 'PagerDefault' extender before * can simply extend the query object with the 'PagerSelectExtender' extender
* executing it. For example: * before executing it. For example:
* @code * @code
* $query = db_select('some_table')->extend('PagerDefault'); * $query = db_select('some_table')
* ->extend('Drupal\Core\Database\Query\PagerSelectExtender');
* @endcode * @endcode
* *
* However, if you are using a different method for generating the items to be * However, if you are using a different method for generating the items to be

View File

@ -25,8 +25,7 @@ interface ExtendableInterface {
* @param $extender_name * @param $extender_name
* The base name of the extending class. The base name will be checked * The base name of the extending class. The base name will be checked
* against the current database connection to allow driver-specific subclasses * against the current database connection to allow driver-specific subclasses
* as well, using the same logic as the query objects themselves. For example, * as well, using the same logic as the query objects themselves.
* PagerDefault_mysql is the MySQL-specific override for PagerDefault.
* @return Drupal\Core\Database\Query\ExtendableInterface * @return Drupal\Core\Database\Query\ExtendableInterface
* The extender object, which now contains a reference to this object. * The extender object, which now contains a reference to this object.
*/ */

View File

@ -0,0 +1,172 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Query\PagerSelectExtender
*/
namespace Drupal\Core\Database\Query;
use Drupal\Core\Database\Connection;
use Drupal\Core\Database\Query\SelectExtender;
use Drupal\Core\Database\Query\SelectInterface;
/**
* Query extender for pager queries.
*
* This is the "default" pager mechanism. It creates a paged query with a fixed
* number of entries per page.
*/
class PagerSelectExtender extends SelectExtender {
/**
* The highest element we've autogenerated so far.
*
* @var int
*/
static $maxElement = 0;
/**
* The number of elements per page to allow.
*
* @var int
*/
protected $limit = 10;
/**
* The unique ID of this pager on this page.
*
* @var int
*/
protected $element = NULL;
/**
* The count query that will be used for this pager.
*
* @var SelectQueryInterface
*/
protected $customCountQuery = FALSE;
public function __construct(SelectInterface $query, Connection $connection) {
parent::__construct($query, $connection);
// Add pager tag. Do this here to ensure that it is always added before
// preExecute() is called.
$this->addTag('pager');
}
/**
* Override the execute method.
*
* Before we run the query, we need to add pager-based range() instructions
* to it.
*/
public function execute() {
// 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.
if (!$this->preExecute($this)) {
return NULL;
}
// A NULL limit is the "kill switch" for pager queries.
if (empty($this->limit)) {
return;
}
$this->ensureElement();
$total_items = $this->getCountQuery()->execute()->fetchField();
$current_page = pager_default_initialize($total_items, $this->limit, $this->element);
$this->range($current_page * $this->limit, $this->limit);
// Now that we've added our pager-based range instructions, run the query normally.
return $this->query->execute();
}
/**
* 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.
*/
protected function ensureElement() {
if (!isset($this->element)) {
$this->element = self::$maxElement++;
}
}
/**
* Specify the count query object to use for this pager.
*
* You will rarely need to specify a count query directly. If not specified,
* one is generated off of the pager query itself.
*
* @param SelectQueryInterface $query
* The count query object. It must return a single row with a single column,
* which is the total number of records.
*/
public function setCountQuery(SelectInterface $query) {
$this->customCountQuery = $query;
}
/**
* Retrieve the count query for this pager.
*
* The count query may be specified manually or, by default, taken from the
* query we are extending.
*
* @return SelectQueryInterface
* A count query object.
*/
public function getCountQuery() {
if ($this->customCountQuery) {
return $this->customCountQuery;
}
else {
return $this->query->countQuery();
}
}
/**
* Specify the maximum number of elements per page for this query.
*
* The default if not specified is 10 items per page.
*
* @param $limit
* An integer specifying the number of elements per page. If passed a false
* value (FALSE, 0, NULL), the pager is disabled.
*/
public function limit($limit = 10) {
$this->limit = $limit;
return $this;
}
/**
* Specify the element ID for this pager query.
*
* The element is used to differentiate different pager queries on the same
* page so that they may be operated independently. If you do not specify an
* element, every pager query on the page will get a unique element. If for
* whatever reason you want to explicitly define an element for a given query,
* you may do so here.
*
* Setting the element here also increments the static $maxElement counter,
* which is used for determining the $element when there's none specified.
*
* Note that no collision detection is done when setting an element ID
* explicitly, so it is possible for two pagers to end up using the same ID
* if both are set explicitly.
*
* @param $element
*/
public function element($element) {
$this->element = $element;
if ($element >= self::$maxElement) {
self::$maxElement = $element + 1;
}
return $this;
}
}

View File

@ -134,7 +134,7 @@ function aggregator_load_feed_items($type, $data = NULL) {
} }
$result = $query $result = $query
->extend('PagerDefault') ->extend('Drupal\Core\Database\Query\PagerSelectExtender')
->limit(20) ->limit(20)
->orderBy('i.timestamp', 'DESC') ->orderBy('i.timestamp', 'DESC')
->orderBy('i.iid', 'DESC') ->orderBy('i.iid', 'DESC')

View File

@ -79,7 +79,9 @@ function comment_admin_overview($form, &$form_state, $arg) {
'operations' => array('data' => t('Operations')), 'operations' => array('data' => t('Operations')),
); );
$query = db_select('comment', 'c')->extend('PagerDefault')->extend('TableSort'); $query = db_select('comment', 'c')
->extend('Drupal\Core\Database\Query\PagerSelectExtender')
->extend('TableSort');
$query->join('node', 'n', 'n.nid = c.nid'); $query->join('node', 'n', 'n.nid = c.nid');
$query->addField('n', 'title', 'node_title'); $query->addField('n', 'title', 'node_title');
$query->addTag('node_access'); $query->addTag('node_access');

View File

@ -849,7 +849,8 @@ function comment_node_page_additions(Node $node) {
* to consider the trailing "/" so we use a substring only. * to consider the trailing "/" so we use a substring only.
*/ */
function comment_get_thread(Node $node, $mode, $comments_per_page) { function comment_get_thread(Node $node, $mode, $comments_per_page) {
$query = db_select('comment', 'c')->extend('PagerDefault'); $query = db_select('comment', 'c')
->extend('Drupal\Core\Database\Query\PagerSelectExtender');
$query->addField('c', 'cid'); $query->addField('c', 'cid');
$query $query
->condition('c.nid', $node->nid) ->condition('c.nid', $node->nid)

View File

@ -37,7 +37,9 @@ function dblog_overview() {
array('data' => t('Operations')), array('data' => t('Operations')),
); );
$query = db_select('watchdog', 'w')->extend('PagerDefault')->extend('TableSort'); $query = db_select('watchdog', 'w')
->extend('Drupal\Core\Database\Query\PagerSelectExtender')
->extend('TableSort');
$query->leftJoin('users', 'u', 'w.uid = u.uid'); $query->leftJoin('users', 'u', 'w.uid = u.uid');
$query $query
->fields('w', array('wid', 'uid', 'severity', 'type', 'timestamp', 'message', 'variables', 'link')) ->fields('w', array('wid', 'uid', 'severity', 'type', 'timestamp', 'message', 'variables', 'link'))
@ -96,7 +98,9 @@ function dblog_top($type) {
$count_query->addExpression('COUNT(DISTINCT(message))'); $count_query->addExpression('COUNT(DISTINCT(message))');
$count_query->condition('type', $type); $count_query->condition('type', $type);
$query = db_select('watchdog', 'w')->extend('PagerDefault')->extend('TableSort'); $query = db_select('watchdog', 'w')
->extend('Drupal\Core\Database\Query\PagerSelectExtender')
->extend('TableSort');
$query->addExpression('COUNT(wid)', 'count'); $query->addExpression('COUNT(wid)', 'count');
$query = $query $query = $query
->fields('w', array('message', 'variables')) ->fields('w', array('message', 'variables'))

View File

@ -9,7 +9,7 @@ namespace Drupal\entity;
use Drupal\entity\EntityFieldQueryException; use Drupal\entity\EntityFieldQueryException;
use Drupal\Core\Database\Query\Select; use Drupal\Core\Database\Query\Select;
use PagerDefault; use Drupal\Core\Database\Query\PagerSelectExtender;
/** /**
* Retrieves entities matching a given set of conditions. * Retrieves entities matching a given set of conditions.
@ -571,10 +571,10 @@ class EntityFieldQuery {
*/ */
public function pager($limit = 10, $element = NULL) { public function pager($limit = 10, $element = NULL) {
if (!isset($element)) { if (!isset($element)) {
$element = PagerDefault::$maxElement++; $element = PagerSelectExtender::$maxElement++;
} }
elseif ($element >= PagerDefault::$maxElement) { elseif ($element >= PagerSelectExtender::$maxElement) {
PagerDefault::$maxElement = $element + 1; PagerSelectExtender::$maxElement = $element + 1;
} }
$this->pager = array( $this->pager = array(

View File

@ -893,7 +893,9 @@ function forum_get_topics($tid, $sortby, $forum_per_page) {
} }
} }
$query = db_select('forum_index', 'f')->extend('PagerDefault')->extend('TableSort'); $query = db_select('forum_index', 'f')
->extend('Drupal\Core\Database\Query\PagerSelectExtender')
->extend('TableSort');
$query->fields('f'); $query->fields('f');
$query $query
->condition('f.tid', $tid) ->condition('f.tid', $tid)

View File

@ -75,7 +75,9 @@ function _locale_translate_seek() {
$limit_language = $query['language']; $limit_language = $query['language'];
} }
$sql_query = $sql_query->extend('PagerDefault')->limit(50); $sql_query = $sql_query
->extend('Drupal\Core\Database\Query\PagerSelectExtender')
->limit(50);
$locales = $sql_query->execute(); $locales = $sql_query->execute();
$header = array(t('String'), t('Context'), ($limit_language) ? t('Language') : t('Languages'), array('data' => t('Operations'), 'colspan' => '2')); $header = array(t('String'), t('Context'), ($limit_language) ? t('Language') : t('Languages'), array('data' => t('Operations'), 'colspan' => '2'));

View File

@ -447,7 +447,9 @@ function node_admin_nodes() {
} }
$header['operations'] = array('data' => t('Operations')); $header['operations'] = array('data' => t('Operations'));
$query = db_select('node', 'n')->extend('PagerDefault')->extend('TableSort'); $query = db_select('node', 'n')
->extend('Drupal\Core\Database\Query\PagerSelectExtender')
->extend('TableSort');
node_build_filter_query($query); node_build_filter_query($query);
if (!user_access('bypass node access')) { if (!user_access('bypass node access')) {

View File

@ -1519,7 +1519,9 @@ function node_search_admin() {
*/ */
function node_search_execute($keys = NULL, $conditions = NULL) { function node_search_execute($keys = NULL, $conditions = NULL) {
// Build matching conditions // Build matching conditions
$query = db_select('search_index', 'i', array('target' => 'slave'))->extend('Drupal\search\SearchQuery')->extend('PagerDefault'); $query = db_select('search_index', 'i', array('target' => 'slave'))
->extend('Drupal\search\SearchQuery')
->extend('Drupal\Core\Database\Query\PagerSelectExtender');
$query->join('node', 'n', 'n.nid = i.sid'); $query->join('node', 'n', 'n.nid = i.sid');
$query $query
->condition('n.status', 1) ->condition('n.status', 1)
@ -2488,7 +2490,7 @@ function node_page_default() {
->condition('status', 1) ->condition('status', 1)
->orderBy('sticky', 'DESC') ->orderBy('sticky', 'DESC')
->orderBy('created', 'DESC') ->orderBy('created', 'DESC')
->extend('PagerDefault') ->extend('Drupal\Core\Database\Query\PagerSelectExtender')
->limit(variable_get('default_nodes_main', 10)) ->limit(variable_get('default_nodes_main', 10))
->addTag('node_access'); ->addTag('node_access');

View File

@ -27,7 +27,9 @@ function path_admin_overview($keys = NULL) {
} }
$header[] = array('data' => t('Operations')); $header[] = array('data' => t('Operations'));
$query = db_select('url_alias')->extend('PagerDefault')->extend('TableSort'); $query = db_select('url_alias')
->extend('Drupal\Core\Database\Query\PagerSelectExtender')
->extend('TableSort');
if ($keys) { if ($keys) {
// Replace wildcards with PDO wildcards. // Replace wildcards with PDO wildcards.
$query->condition('alias', '%' . preg_replace('!\*+!', '%', $keys) . '%', 'LIKE'); $query->condition('alias', '%' . preg_replace('!\*+!', '%', $keys) . '%', 'LIKE');

View File

@ -29,7 +29,7 @@ function poll_page() {
->groupBy('n.title') ->groupBy('n.title')
->groupBy('p.active') ->groupBy('p.active')
->groupBy('n.created') ->groupBy('n.created')
->extend('PagerDefault') ->extend('Drupal\Core\Database\Query\PagerSelectExtender')
->limit($polls_per_page) ->limit($polls_per_page)
->addTag('node_access'); ->addTag('node_access');
$select->setCountQuery($count_select); $select->setCountQuery($count_select);
@ -56,7 +56,9 @@ function poll_votes($node) {
$header[] = array('data' => t('Vote'), 'field' => 'pc.chtext'); $header[] = array('data' => t('Vote'), 'field' => 'pc.chtext');
$header[] = array('data' => t('Timestamp'), 'field' => 'pv.timestamp', 'sort' => 'desc'); $header[] = array('data' => t('Timestamp'), 'field' => 'pv.timestamp', 'sort' => 'desc');
$select = db_select('poll_vote', 'pv')->extend('PagerDefault')->extend('TableSort'); $select = db_select('poll_vote', 'pv')
->extend('Drupal\Core\Database\Query\PagerSelectExtender')
->extend('TableSort');
$select->join('poll_choice', 'pc', 'pv.chid = pc.chid'); $select->join('poll_choice', 'pc', 'pv.chid = pc.chid');
$select->join('users', 'u', 'pv.uid = u.uid'); $select->join('users', 'u', 'pv.uid = u.uid');
$queried_votes = $select $queried_votes = $select

View File

@ -157,8 +157,8 @@ function hook_search_admin() {
/** /**
* Execute a search for a set of key words. * Execute a search for a set of key words.
* *
* Use database API with the 'PagerDefault' query extension to perform your * Use database API with the 'Drupal\Core\Database\Query\PagerSelectExtender'
* search. * query extension to perform your search.
* *
* If your module uses hook_update_index() and search_index() to index its * If your module uses hook_update_index() and search_index() to index its
* items, use table 'search_index' aliased to 'i' as the main table in your * items, use table 'search_index' aliased to 'i' as the main table in your
@ -195,7 +195,9 @@ function hook_search_admin() {
*/ */
function hook_search_execute($keys = NULL, $conditions = NULL) { function hook_search_execute($keys = NULL, $conditions = NULL) {
// Build matching conditions // Build matching conditions
$query = db_select('search_index', 'i', array('target' => 'slave'))->extend('Drupal\search\SearchQuery')->extend('PagerDefault'); $query = db_select('search_index', 'i', array('target' => 'slave'))
->extend('Drupal\search\SearchQuery')
->extend('Drupal\Core\Database\Query\PagerSelectExtender');
$query->join('node', 'n', 'n.nid = i.sid'); $query->join('node', 'n', 'n.nid = i.sid');
$query $query
->condition('n.status', 1) ->condition('n.status', 1)

View File

@ -25,7 +25,9 @@ function statistics_recent_hits() {
array('data' => t('Operations')) array('data' => t('Operations'))
); );
$query = db_select('accesslog', 'a', array('target' => 'slave'))->extend('PagerDefault')->extend('TableSort'); $query = db_select('accesslog', 'a', array('target' => 'slave'))
->extend('Drupal\Core\Database\Query\PagerSelectExtender')
->extend('TableSort');
$query->join('users', 'u', 'a.uid = u.uid'); $query->join('users', 'u', 'a.uid = u.uid');
$query $query
->fields('a', array('aid', 'timestamp', 'path', 'title', 'uid')) ->fields('a', array('aid', 'timestamp', 'path', 'title', 'uid'))
@ -71,7 +73,9 @@ function statistics_top_pages() {
array('data' => t('Total page generation time'), 'field' => 'total_time') array('data' => t('Total page generation time'), 'field' => 'total_time')
); );
$query = db_select('accesslog', 'a', array('target' => 'slave'))->extend('PagerDefault')->extend('TableSort'); $query = db_select('accesslog', 'a', array('target' => 'slave'))
->extend('Drupal\Core\Database\Query\PagerSelectExtender')
->extend('TableSort');
$query->addExpression('COUNT(path)', 'hits'); $query->addExpression('COUNT(path)', 'hits');
// MAX(title) avoids having empty node titles which otherwise causes // MAX(title) avoids having empty node titles which otherwise causes
// duplicates in the top pages list. // duplicates in the top pages list.
@ -124,7 +128,9 @@ function statistics_top_visitors() {
array('data' => t('Total page generation time'), 'field' => 'total'), array('data' => t('Total page generation time'), 'field' => 'total'),
array('data' => user_access('block IP addresses') ? t('Operations') : '', 'colspan' => 2), array('data' => user_access('block IP addresses') ? t('Operations') : '', 'colspan' => 2),
); );
$query = db_select('accesslog', 'a', array('target' => 'slave'))->extend('PagerDefault')->extend('TableSort'); $query = db_select('accesslog', 'a', array('target' => 'slave'))
->extend('Drupal\Core\Database\Query\PagerSelectExtender')
->extend('TableSort');
$query->leftJoin('blocked_ips', 'bl', 'a.hostname = bl.ip'); $query->leftJoin('blocked_ips', 'bl', 'a.hostname = bl.ip');
$query->leftJoin('users', 'u', 'a.uid = u.uid'); $query->leftJoin('users', 'u', 'a.uid = u.uid');
@ -184,7 +190,9 @@ function statistics_top_referrers() {
array('data' => t('Url'), 'field' => 'url'), array('data' => t('Url'), 'field' => 'url'),
array('data' => t('Last visit'), 'field' => 'last'), array('data' => t('Last visit'), 'field' => 'last'),
); );
$query = db_select('accesslog', 'a')->extend('PagerDefault')->extend('TableSort'); $query = db_select('accesslog', 'a')
->extend('Drupal\Core\Database\Query\PagerSelectExtender')
->extend('TableSort');
$query->addExpression('COUNT(url)', 'hits'); $query->addExpression('COUNT(url)', 'hits');
$query->addExpression('MAX(timestamp)', 'last'); $query->addExpression('MAX(timestamp)', 'last');

View File

@ -25,7 +25,9 @@ function statistics_node_tracker() {
array('data' => t('User'), 'field' => 'u.name'), array('data' => t('User'), 'field' => 'u.name'),
array('data' => t('Operations'))); array('data' => t('Operations')));
$query = db_select('accesslog', 'a', array('target' => 'slave'))->extend('PagerDefault')->extend('TableSort'); $query = db_select('accesslog', 'a', array('target' => 'slave'))
->extend('Drupal\Core\Database\Query\PagerSelectExtender')
->extend('TableSort');
$query->join('users', 'u', 'a.uid = u.uid'); $query->join('users', 'u', 'a.uid = u.uid');
$query $query
@ -79,7 +81,9 @@ function statistics_user_tracker() {
array('data' => t('Timestamp'), 'field' => 'timestamp', 'sort' => 'desc'), array('data' => t('Timestamp'), 'field' => 'timestamp', 'sort' => 'desc'),
array('data' => t('Page'), 'field' => 'path'), array('data' => t('Page'), 'field' => 'path'),
array('data' => t('Operations'))); array('data' => t('Operations')));
$query = db_select('accesslog', 'a', array('target' => 'slave'))->extend('PagerDefault')->extend('TableSort'); $query = db_select('accesslog', 'a', array('target' => 'slave'))
->extend('Drupal\Core\Database\Query\PagerSelectExtender')
->extend('TableSort');
$query $query
->fields('a', array('aid', 'timestamp', 'path', 'title')) ->fields('a', array('aid', 'timestamp', 'path', 'title'))
->condition('uid', $account->uid) ->condition('uid', $account->uid)

View File

@ -2921,7 +2921,9 @@ function system_actions_manage() {
array('data' => t('Label'), 'field' => 'label'), array('data' => t('Label'), 'field' => 'label'),
array('data' => $instances_present ? t('Operations') : '', 'colspan' => '2') array('data' => $instances_present ? t('Operations') : '', 'colspan' => '2')
); );
$query = db_select('actions')->extend('PagerDefault')->extend('TableSort'); $query = db_select('actions')
->extend('Drupal\Core\Database\Query\PagerSelectExtender')
->extend('TableSort');
$result = $query $result = $query
->fields('actions') ->fields('actions')
->limit(50) ->limit(50)

View File

@ -2087,7 +2087,7 @@ class DatabaseSelectComplexTestCase extends DatabaseTestCase {
function testHavingCountQuery() { function testHavingCountQuery() {
$query = db_select('test') $query = db_select('test')
->extend('PagerDefault') ->extend('Drupal\Core\Database\Query\PagerSelectExtender')
->groupBy('age') ->groupBy('age')
->having('age + 1 > 0'); ->having('age + 1 > 0');
$query->addField('test', 'age'); $query->addField('test', 'age');
@ -2352,7 +2352,8 @@ class DatabaseSelectPagerDefaultTestCase extends DatabaseTestCase {
* This is a regression test for #467984. * This is a regression test for #467984.
*/ */
function testInnerPagerQuery() { function testInnerPagerQuery() {
$query = db_select('test', 't')->extend('PagerDefault'); $query = db_select('test', 't')
->extend('Drupal\Core\Database\Query\PagerSelectExtender');
$query $query
->fields('t', array('age')) ->fields('t', array('age'))
->orderBy('age') ->orderBy('age')
@ -2373,7 +2374,8 @@ class DatabaseSelectPagerDefaultTestCase extends DatabaseTestCase {
* This is a regression test for #467984. * This is a regression test for #467984.
*/ */
function testHavingPagerQuery() { function testHavingPagerQuery() {
$query = db_select('test', 't')->extend('PagerDefault'); $query = db_select('test', 't')
->extend('Drupal\Core\Database\Query\PagerSelectExtender');
$query $query
->fields('t', array('name')) ->fields('t', array('name'))
->orderBy('name') ->orderBy('name')
@ -2393,7 +2395,8 @@ class DatabaseSelectPagerDefaultTestCase extends DatabaseTestCase {
function testElementNumbers() { function testElementNumbers() {
$_GET['page'] = '3, 2, 1, 0'; $_GET['page'] = '3, 2, 1, 0';
$name = db_select('test', 't')->extend('PagerDefault') $name = db_select('test', 't')
->extend('Drupal\Core\Database\Query\PagerSelectExtender')
->element(2) ->element(2)
->fields('t', array('name')) ->fields('t', array('name'))
->orderBy('age') ->orderBy('age')
@ -2404,7 +2407,8 @@ class DatabaseSelectPagerDefaultTestCase extends DatabaseTestCase {
// Setting an element smaller than the previous one // Setting an element smaller than the previous one
// should not overwrite the pager $maxElement with a smaller value. // should not overwrite the pager $maxElement with a smaller value.
$name = db_select('test', 't')->extend('PagerDefault') $name = db_select('test', 't')
->extend('Drupal\Core\Database\Query\PagerSelectExtender')
->element(1) ->element(1)
->fields('t', array('name')) ->fields('t', array('name'))
->orderBy('age') ->orderBy('age')
@ -2413,7 +2417,8 @@ class DatabaseSelectPagerDefaultTestCase extends DatabaseTestCase {
->fetchField(); ->fetchField();
$this->assertEqual($name, 'George', t('Pager query #2 with a specified element ID returned the correct results.')); $this->assertEqual($name, 'George', t('Pager query #2 with a specified element ID returned the correct results.'));
$name = db_select('test', 't')->extend('PagerDefault') $name = db_select('test', 't')
->extend('Drupal\Core\Database\Query\PagerSelectExtender')
->fields('t', array('name')) ->fields('t', array('name'))
->orderBy('age') ->orderBy('age')
->limit(1) ->limit(1)

View File

@ -105,7 +105,9 @@ function database_test_even_pager_query($limit) {
->orderBy('age'); ->orderBy('age');
// This should result in 2 pages of results. // This should result in 2 pages of results.
$query = $query->extend('PagerDefault')->limit($limit); $query = $query
->extend('Drupal\Core\Database\Query\PagerSelectExtender')
->limit($limit);
$names = $query->execute()->fetchCol(); $names = $query->execute()->fetchCol();
@ -129,7 +131,9 @@ function database_test_odd_pager_query($limit) {
->orderBy('pid'); ->orderBy('pid');
// This should result in 4 pages of results. // This should result in 4 pages of results.
$query = $query->extend('PagerDefault')->limit($limit); $query = $query
->extend('Drupal\Core\Database\Query\PagerSelectExtender')
->limit($limit);
$names = $query->execute()->fetchCol(); $names = $query->execute()->fetchCol();
@ -213,7 +217,9 @@ function database_test_theme_tablesort($form, &$form_state) {
$count_query = clone $query; $count_query = clone $query;
$count_query->addExpression('COUNT(u.uid)'); $count_query->addExpression('COUNT(u.uid)');
$query = $query->extend('PagerDefault')->extend('TableSort'); $query = $query
->extend('Drupal\Core\Database\Query\PagerSelectExtender')
->extend('TableSort');
$query $query
->fields('u', array('uid', 'name', 'status', 'created', 'access')) ->fields('u', array('uid', 'name', 'status', 'created', 'access'))
->limit(50) ->limit(50)

View File

@ -233,7 +233,7 @@ function taxonomy_select_nodes($tid, $pager = TRUE, $limit = FALSE, $order = arr
$count_query = clone $query; $count_query = clone $query;
$count_query->addExpression('COUNT(t.nid)'); $count_query->addExpression('COUNT(t.nid)');
$query = $query->extend('PagerDefault'); $query = $query->extend('Drupal\Core\Database\Query\PagerSelectExtender');
if ($limit !== FALSE) { if ($limit !== FALSE) {
$query = $query->limit($limit); $query = $query->limit($limit);
} }

View File

@ -19,7 +19,8 @@
*/ */
function tracker_page($account = NULL, $set_title = FALSE) { function tracker_page($account = NULL, $set_title = FALSE) {
if ($account) { if ($account) {
$query = db_select('tracker_user', 't')->extend('PagerDefault'); $query = db_select('tracker_user', 't')
->extend('Drupal\Core\Database\Query\PagerSelectExtender');
$query->condition('t.uid', $account->uid); $query->condition('t.uid', $account->uid);
if ($set_title) { if ($set_title) {
@ -30,7 +31,8 @@ function tracker_page($account = NULL, $set_title = FALSE) {
} }
} }
else { else {
$query = db_select('tracker_node', 't', array('target' => 'slave'))->extend('PagerDefault'); $query = db_select('tracker_node', 't', array('target' => 'slave'))
->extend('Drupal\Core\Database\Query\PagerSelectExtender');
} }
// This array acts as a placeholder for the data selected later // This array acts as a placeholder for the data selected later

View File

@ -158,7 +158,9 @@ function user_admin_account() {
$count_query = clone $query; $count_query = clone $query;
$count_query->addExpression('COUNT(u.uid)'); $count_query->addExpression('COUNT(u.uid)');
$query = $query->extend('PagerDefault')->extend('TableSort'); $query = $query
->extend('Drupal\Core\Database\Query\PagerSelectExtender')
->extend('TableSort');
$query $query
->fields('u', array('uid', 'name', 'status', 'created', 'access')) ->fields('u', array('uid', 'name', 'status', 'created', 'access'))
->limit(50) ->limit(50)

View File

@ -641,7 +641,8 @@ function user_search_execute($keys = NULL, $conditions = NULL) {
$find = array(); $find = array();
// Replace wildcards with MySQL/PostgreSQL wildcards. // Replace wildcards with MySQL/PostgreSQL wildcards.
$keys = preg_replace('!\*+!', '%', $keys); $keys = preg_replace('!\*+!', '%', $keys);
$query = db_select('users')->extend('PagerDefault'); $query = db_select('users')
->extend('Drupal\Core\Database\Query\PagerSelectExtender');
$query->fields('users', array('uid')); $query->fields('users', array('uid'));
if (user_access('administer users')) { if (user_access('administer users')) {
// Administrators can also search in the otherwise private email field. // Administrators can also search in the otherwise private email field.