You are here

function views_handler_argument_node_created_year_month::title in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 6.2 modules/node/views_handler_argument_dates_various.inc \views_handler_argument_node_created_year_month::title()
  2. 7.3 modules/node/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

modules/node/views_handler_argument_dates_various.inc, line 77
Argument handler for a full date (CCYYMMDD)

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, 0);
}