protected function summaryQuery() { $this->
ensureMyTable();
// Add the field.
$this->base_alias =
$this->query->
addField($this->tableAlias,
$this->realField
);
$this->
summaryNameField();
$this->
summaryBasics();
} /**
* Adds the name field, which is the field displayed in summary queries.
*
* This is often used when the argument is numeric.
*/
protected function summaryNameField() { // Add the 'name' field. For example, if this is a uid argument, the
// name field would be 'name' (i.e, the username).