function views_handler_argument::summary_argument
Same name in other branches
- 7.x-3.x handlers/views_handler_argument.inc \views_handler_argument::summary_argument()
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 659
Class
- views_handler_argument
- Base class for arguments.
Code
function summary_argument($data) {
return $data->{$this->base_alias};
}