1.20.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.

File

modules/views/handlers/views_handler_argument.inc, line 945
@todo.

Class

views_handler_argument
Base class for arguments.

Code

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