function views_handler_argument::summary_argument
Same name in other branches
- 6.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
object $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.
- 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.
- 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.
- 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.
File
-
handlers/
views_handler_argument.inc, line 989
Class
- views_handler_argument
- Base class for arguments.
Code
public function summary_argument($data) {
return $data->{$this->base_alias};
}