Namespace
Drupal\rules\TypedData\Options
File
-
src/TypedData/Options/ConvertTypeOptions.php
View source
<?php
namespace Drupal\rules\TypedData\Options;
use Drupal\Core\Session\AccountInterface;
class ConvertTypeOptions extends OptionsProviderBase {
public function getPossibleOptions(AccountInterface $account = NULL) {
return [
'float' => $this->t('Float'),
'integer' => $this->t('Integer'),
'string' => $this->t('String'),
];
}
}
Classes
| Title |
Deprecated |
Summary |
| ConvertTypeOptions |
|
Options provider for the types of field access to check for. |