function Status::getValueOptions

Same name and namespace in other branches
  1. 9 core/modules/file/src/Plugin/views/filter/Status.php \Drupal\file\Plugin\views\filter\Status::getValueOptions()
  2. 8.9.x core/modules/file/src/Plugin/views/filter/Status.php \Drupal\file\Plugin\views\filter\Status::getValueOptions()
  3. 10 core/modules/file/src/Plugin/views/filter/Status.php \Drupal\file\Plugin\views\filter\Status::getValueOptions()

Overrides InOperator::getValueOptions

File

core/modules/file/src/Plugin/views/filter/Status.php, line 17

Class

Status
Filter by file status.

Namespace

Drupal\file\Plugin\views\filter

Code

public function getValueOptions() {
    if (!isset($this->valueOptions)) {
        $this->valueOptions = [
            0 => $this->t('Temporary'),
            FileInterface::STATUS_PERMANENT => $this->t('Permanent'),
        ];
    }
    return $this->valueOptions;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.