public FilterFormatListBuilder::__construct(EntityTypeInterface $entity_type, EntityStorageInterface $storage, ConfigFactoryInterface $config_factory)
Constructs a new FilterFormatListBuilder.
Parameters
\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type definition.
\Drupal\Core\Entity\EntityStorageInterface $storage: The entity storage class.
\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The config factory.
Overrides DraggableListBuilder::__construct
File
- core/modules/filter/src/FilterFormatListBuilder.php, line 42
Class
- FilterFormatListBuilder
- Defines a class to build a listing of filter format entities.
Namespace
Drupal\filter
Code
1 2 3 4 5 | public function __construct(EntityTypeInterface $entity_type , EntityStorageInterface $storage , ConfigFactoryInterface $config_factory ) { parent::__construct( $entity_type , $storage ); $this ->configFactory = $config_factory ; } |
Please login to continue.