You are here

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

Views handlers use a special construct function.

Allows it to more easily construct them with variable arguments.

Overrides views_handler_argument_formula::construct

File

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

Class

views_handler_argument_node_created_day
Argument handler for a day (DD).

Code

public function construct() {
  parent::construct();
  $this->formula = views_date_sql_extract('DAY', "***table***.{$this->real_field}");
  $this->format = 'j';
  $this->arg_format = 'd';
}