You are here

function CreatedDay::get_formula in Views (for Drupal 7) 8.3

Overrides Drupal\views\Plugin\views\argument\Formula::get_formula().

Overrides Formula::get_formula

File

lib/Views/node/Plugin/views/argument/CreatedDay.php, line 28
Definition of Views\node\Plugin\views\argument\CreatedDay.

Class

CreatedDay
Argument handler for a day (DD)

Namespace

Views\node\Plugin\views\argument

Code

function get_formula() {
  $this->formula = $this
    ->extractSQL('DAY');
  return parent::get_formula();
}