You are here

function domain_views_handler_argument_domain_access_gid::summary_name in Domain Views 7

Provides the name to use for the summary.

By default this is just the name field.

Parameters

object $data: The query results for the row.

Return value

string The summary.

Overrides views_handler_argument::summary_name

File

includes/domain_views_handler_argument_domain_access_gid.inc, line 27
Interface between domain_views.module and views.module.

Class

domain_views_handler_argument_domain_access_gid
Argument for domain ids stored in the database currently active domain and any domain.

Code

function summary_name($data) {
  return $this
    ->get_domain_id($data->{$this->name_alias});
}