You are here

function views_handler_argument_node_created_year::construct 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::construct()
  2. 7.3 modules/node/views_handler_argument_dates_various.inc \views_handler_argument_node_created_year::construct()

Constructor implementation

Overrides views_handler_argument_formula::construct

File

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

Class

views_handler_argument_node_created_year
Argument handler for a year (CCYY)

Code

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