FilterFormat.php
Same filename in this branch
Same filename in other branches
- 9 core/modules/filter/src/Entity/FilterFormat.php
- 9 core/modules/filter/src/Plugin/DataType/FilterFormat.php
- 9 core/modules/filter/src/Plugin/migrate/source/d6/FilterFormat.php
- 9 core/modules/filter/src/Plugin/migrate/source/d7/FilterFormat.php
- 10 core/modules/filter/src/Entity/FilterFormat.php
- 10 core/modules/filter/src/Plugin/DataType/FilterFormat.php
- 10 core/modules/filter/src/Plugin/migrate/source/d6/FilterFormat.php
- 10 core/modules/filter/src/Plugin/migrate/source/d7/FilterFormat.php
- 11.x core/modules/filter/src/Entity/FilterFormat.php
- 11.x core/modules/filter/src/Plugin/DataType/FilterFormat.php
- 11.x core/modules/filter/src/Plugin/migrate/source/d6/FilterFormat.php
- 11.x core/modules/filter/src/Plugin/migrate/source/d7/FilterFormat.php
Namespace
Drupal\filter\Plugin\DataTypeFile
-
core/
modules/ filter/ src/ Plugin/ DataType/ FilterFormat.php
View source
<?php
namespace Drupal\filter\Plugin\DataType;
use Drupal\Core\Session\AccountInterface;
use Drupal\Core\TypedData\OptionsProviderInterface;
use Drupal\Core\TypedData\Plugin\DataType\StringData;
/**
* The filter format data type.
*
* @DataType(
* id = "filter_format",
* label = @Translation("Filter format")
* )
*/
class FilterFormat extends StringData implements OptionsProviderInterface {
/**
* {@inheritdoc}
*/
public function getPossibleValues(AccountInterface $account = NULL) {
return array_keys($this->getPossibleOptions($account));
}
/**
* {@inheritdoc}
*/
public function getPossibleOptions(AccountInterface $account = NULL) {
return array_map(function ($format) {
return $format->label();
}, filter_formats());
}
/**
* {@inheritdoc}
*/
public function getSettableValues(AccountInterface $account = NULL) {
return array_keys($this->getSettableOptions($account));
}
/**
* {@inheritdoc}
*/
public function getSettableOptions(AccountInterface $account = NULL) {
// @todo: Avoid calling functions but move to injected dependencies.
return array_map(function ($format) {
return $format->label();
}, filter_formats($account));
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
FilterFormat | The filter format data type. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.