You are here

function domain_views_handler_argument_domain_access_gid::title in Domain Views 7

Get the title this argument will assign the view, given the argument.

This usually needs to be overridden to provide a proper title.

Overrides views_handler_argument::title

File

includes/domain_views_handler_argument_domain_access_gid.inc, line 23
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 title() {
  return $this
    ->get_domain_id($this->argument);
}