You are here

public function views_handler_argument_node_created_month::summary_argument 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_month::summary_argument()
  2. 6.2 modules/node/views_handler_argument_dates_various.inc \views_handler_argument_node_created_month::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.

Overrides views_handler_argument::summary_argument

File

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

Class

views_handler_argument_node_created_month
Argument handler for a month (MM).

Code

public function summary_argument($data) {

  // Make sure the argument contains leading zeroes.
  return str_pad($data->{$this->base_alias}, 2, '0', STR_PAD_LEFT);
}