Same name and namespace in other branches
  1. 6.x-3.x modules/node/views_handler_argument_dates_various.inc \views_handler_argument_node_created_fulldate::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 16
Definition of views_handler_argument_node_created_fulldate.

Class

views_handler_argument_node_created_fulldate
Argument handler for a full date (CCYYMMDD).

Code

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