function ConvertTypeOptions::getPossibleOptions
Overrides OptionsProviderInterface::getPossibleOptions
File
-
src/
TypedData/ Options/ ConvertTypeOptions.php, line 15
Class
- ConvertTypeOptions
- Options provider for the types of field access to check for.
Namespace
Drupal\rules\TypedData\OptionsCode
public function getPossibleOptions(AccountInterface $account = NULL) {
return [
'float' => $this->t('Float'),
'integer' => $this->t('Integer'),
'string' => $this->t('String'),
];
}