You are here

public function views_handler_argument_node_created_day::summary_name in Views (for Drupal 7) 7.3

Same name and namespace in other branches
  1. 6.3 modules/node/views_handler_argument_dates_various.inc \views_handler_argument_node_created_day::summary_name()
  2. 6.2 modules/node/views_handler_argument_dates_various.inc \views_handler_argument_node_created_day::summary_name()

Provide a link to the next level of the view.

Overrides views_handler_argument::summary_name

File

modules/node/views_handler_argument_dates_various.inc, line 156
Definition of views_handler_argument_node_created_fulldate.

Class

views_handler_argument_node_created_day
Argument handler for a day (DD).

Code

public function summary_name($data) {
  $day = str_pad($data->{$this->name_alias}, 2, '0', STR_PAD_LEFT);

  // strtotime() respects server timezone, so we need to set the time fixed
  // as UTC time.
  return format_date(strtotime("2005" . "05" . $day . " 00:00:00 UTC"), 'custom', $this->format, 'UTC');
}