1 select.inc public SelectQuery::addTag($tag)

Implements QueryAlterableInterface::addTag().

Return value

SelectQuery:

Overrides QueryAlterableInterface::addTag

File

core/includes/database/select.inc, line 1002

Class

SelectQuery
Query builder for SELECT statements.

Code

public function addTag($tag) {
  $this->alterTags[$tag] = 1;
  return $this;
}