1 views_handler_argument_dates_various.inc | views_handler_argument_node_created_year_month::title() |
Provide a link to the next level of the view
Overrides views_handler_argument::title
File
- core/
modules/ node/ views/ views_handler_argument_dates_various.inc, line 78 - Handlers for various date arguments.
Class
- views_handler_argument_node_created_year_month
- Argument handler for a year plus month (CCYYMM)
Code
function title() {
return format_date(strtotime($this->argument . "15" . " 00:00:00 UTC"), 'custom', $this->format, 'UTC');
}