public function Date::getFormula

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

Overrides Formula::getFormula

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/argument/Date.php, line 100
Definition of 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();
}