You are here

public function JobItemState::getValueOptions in Translation Management Tool 8

Gets the values of the options.

Return value

array Returns options.

Overrides InOperator::getValueOptions

File

src/Plugin/views/filter/JobItemState.php, line 30

Class

JobItemState
Filter based on job item state.

Namespace

Drupal\tmgmt\Plugin\views\filter

Code

public function getValueOptions() {
  $this->valueOptions = [
    'open_job_items' => t('- Open jobs items -'),
  ];
  $state_definitions = JobItem::getStateDefinitions();
  foreach ($state_definitions as $state => $state_definition) {
    $this->valueOptions[$state] = $state_definition['label'];
  }
  return $this->valueOptions;
}