function views_handler_argument::summary_argument

3.x views_handler_argument.inc views_handler_argument::summary_argument($data)
2.x views_handler_argument.inc views_handler_argument::summary_argument($data)

Provide the argument to use to link from the summary to the next level; this will be called once per row of a summary, and used as part of $view->get_url().

Parameters

$data: The query results for the row.

4 methods override views_handler_argument::summary_argument()
views_handler_argument_many_to_one::summary_argument in handlers/views_handler_argument_many_to_one.inc
Provide the argument to use to link from the summary to the next level; this will be called once per row of a summary, and used as part of $view->get_url().
views_handler_argument_node_created_day::summary_argument in modules/node/views_handler_argument_dates_various.inc
Provide the argument to use to link from the summary to the next level; this will be called once per row of a summary, and used as part of $view->get_url().
views_handler_argument_node_created_month::summary_argument in modules/node/views_handler_argument_dates_various.inc
Provide the argument to use to link from the summary to the next level; this will be called once per row of a summary, and used as part of $view->get_url().
views_handler_argument_string::summary_argument in handlers/views_handler_argument_string.inc
Provide the argument to use to link from the summary to the next level; this will be called once per row of a summary, and used as part of $view->get_url().

File

handlers/views_handler_argument.inc, line 574

Class

views_handler_argument
Base class for arguments.

Code

function summary_argument($data) {
  return $data->{$this->base_alias};
}