You are here

function views_handler_argument_node_created_year_month::construct in Views (for Drupal 7) 6.2

Same name and namespace in other branches
  1. 6.3 modules/node/views_handler_argument_dates_various.inc \views_handler_argument_node_created_year_month::construct()
  2. 7.3 modules/node/views_handler_argument_dates_various.inc \views_handler_argument_node_created_year_month::construct()

Constructor implementation

Overrides views_handler_argument_formula::construct

File

modules/node/views_handler_argument_dates_various.inc, line 53

Class

views_handler_argument_node_created_year_month
Argument handler for a year plus month (CCYYMM)

Code

function construct() {
  parent::construct();
  $this->format = 'F Y';
  $this->arg_format = 'Ym';
  $this->formula = views_date_sql_format($this->arg_format, "***table***.{$this->real_field}");
}