function ListPositionOptions::getPossibleOptions

Overrides OptionsProviderInterface::getPossibleOptions

File

src/TypedData/Options/ListPositionOptions.php, line 15

Class

ListPositionOptions
Options provider for the types of field access to check for.

Namespace

Drupal\rules\TypedData\Options

Code

public function getPossibleOptions(AccountInterface $account = NULL) {
    return [
        'start' => $this->t('At the start'),
        'end' => $this->t('At the end'),
    ];
}