You are here

public function Date::getFormula in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/views/src/Plugin/views/argument/Date.php \Drupal\views\Plugin\views\argument\Date::getFormula()

Overrides Formula::getFormula

File

core/modules/views/src/Plugin/views/argument/Date.php, line 133
Contains \Drupal\views\Plugin\views\argument\Date.

Class

Date
Abstract argument handler for dates.

Namespace

Drupal\views\Plugin\views\argument

Code

public function getFormula() {
  $this->formula = $this
    ->getDateFormat($this->argFormat);
  return parent::getFormula();
}