public function SelectQueryExtender::addTag
7.x select.inc | public SelectQueryExtender::addTag($tag) |
Adds a tag to a query.
Tags are strings that identify a query. A query may have any number of tags. Tags are used to mark a query so that alter hooks may decide if they wish to take action. Tags should be all lower-case and contain only letters, numbers, and underscore, and start with a letter. That is, they should follow the same rules as PHP identifiers in general.
Parameters
$tag: The tag to add.
Return value
QueryAlterableInterface The called object.
Overrides QueryAlterableInterface::addTag
3 calls to SelectQueryExtender::addTag()
- PagerDefault::__construct in drupal-7.x/
includes/ pager.inc - SearchQuery::execute in drupal-7.x/
modules/ search/ search.extender.inc - Executes the search.
- TableSort::__construct in drupal-7.x/
includes/ tablesort.inc
File
- drupal-7.x/
includes/ database/ select.inc, line 583
Class
- SelectQueryExtender
- The base extender class for Select queries.
Code
public function addTag($tag) {
$this->query->addTag($tag);
return $this;
}