class EntityViewDisplayEditForm in Facebook Instant Articles 8.2
Same name and namespace in other branches
- 3.x src/Form/EntityViewDisplayEditForm.php \Drupal\fb_instant_articles\Form\EntityViewDisplayEditForm
Extends the core EntityViewDisplayEditForm to support multiple regions.
Hierarchy
- class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\Core\Entity\EntityForm implements EntityFormInterface
- class \Drupal\field_ui\Form\EntityDisplayFormBase
- class \Drupal\field_ui\Form\EntityViewDisplayEditForm
- class \Drupal\fb_instant_articles\Form\EntityViewDisplayEditForm
- class \Drupal\field_ui\Form\EntityViewDisplayEditForm
- class \Drupal\field_ui\Form\EntityDisplayFormBase
- class \Drupal\Core\Entity\EntityForm implements EntityFormInterface
Expanded class hierarchy of EntityViewDisplayEditForm
3 files declare their use of EntityViewDisplayEditForm
- fb_instant_articles_api.module in modules/
fb_instant_articles_api/ fb_instant_articles_api.module - Hook implementations.
- InstantArticleContentEntityNormalizer.php in src/
Normalizer/ InstantArticleContentEntityNormalizer.php - ValidFacebookInstantArticles.php in modules/
fb_instant_articles_views/ src/ Plugin/ views/ filter/ ValidFacebookInstantArticles.php
File
- src/
Form/ EntityViewDisplayEditForm.php, line 12
Namespace
Drupal\fb_instant_articles\FormView source
class EntityViewDisplayEditForm extends CoreEntityViewDisplayEditForm {
/**
* Name of the FBIA view mode.
*/
const FBIA_VIEW_MODE = 'fb_instant_articles';
/**
* {@inheritdoc}
*/
public function getRegions() {
$regions = parent::getRegions();
if ($this
->getEntity()
->getOriginalMode() === 'fb_instant_articles') {
$new_regions[Regions::REGION_HEADER] = [
'title' => $this
->t('Header'),
'message' => $this
->t('No fields are displayed in this region.'),
];
$new_regions[Regions::REGION_CONTENT] = [
'title' => $this
->t('Body'),
'message' => $this
->t('No fields are displayed in this region.'),
];
$new_regions[Regions::REGION_FOOTER] = [
'title' => $this
->t('Footer'),
'message' => $this
->t('No fields are displayed in this region.'),
];
$new_regions['hidden'] = $regions['hidden'];
$regions = $new_regions;
}
return $regions;
}
/**
* {@inheritdoc}
*/
protected function getApplicablePluginOptions(FieldDefinitionInterface $field_definition) {
$options = parent::getApplicablePluginOptions($field_definition);
// Filter out FBIA formatters for view modes other than the Facebook instant
// articles view mode.
if ($this
->getEntity()
->getOriginalMode() !== 'fb_instant_articles') {
foreach ($options as $key => $label) {
if (preg_match('/^fbia_/', $key)) {
unset($options[$key]);
}
}
}
return $options;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
EntityDisplayFormBase:: |
protected | property |
The entity being used by this form. Overrides EntityForm:: |
|
EntityDisplayFormBase:: |
protected | property | The entity display repository. | |
EntityDisplayFormBase:: |
protected | property | The entity field manager. | |
EntityDisplayFormBase:: |
protected | property | A list of field types. | |
EntityDisplayFormBase:: |
protected | property | The widget or formatter plugin manager. | |
EntityDisplayFormBase:: |
protected | function |
Copies top-level form values to entity properties Overrides EntityForm:: |
|
EntityDisplayFormBase:: |
public | function |
Gets the actual form array to be built. Overrides EntityForm:: |
|
EntityDisplayFormBase:: |
protected | function | Returns entity (form) displays for the current entity display type. | |
EntityDisplayFormBase:: |
protected | function | Returns form or view modes statuses for the bundle used by this form. | |
EntityDisplayFormBase:: |
public | function |
Determines which entity will be used by this form from a RouteMatch object. Overrides EntityForm:: |
|
EntityDisplayFormBase:: |
protected | function | Returns the extra fields of the entity type and bundle used by this form. | |
EntityDisplayFormBase:: |
protected | function | Collects the definitions of fields whose display is configurable. | |
EntityDisplayFormBase:: |
public | function | Returns an associative array of all regions. | |
EntityDisplayFormBase:: |
public | function | Returns the region to which a row in the display overview belongs. | |
EntityDisplayFormBase:: |
public | function | Ajax handler for multistep buttons. | |
EntityDisplayFormBase:: |
public | function | Form submission handler for multistep buttons. | |
EntityDisplayFormBase:: |
public | function | Determines the rendering order of an array representing a tree. | |
EntityDisplayFormBase:: |
protected | function | Saves the updated display mode statuses. | |
EntityDisplayFormBase:: |
public | function |
This is the default entity object builder function. It is called before any
other submit handler to build the new entity object to be used by the
following submit handlers. At this point of the form workflow the entity is
validated and the form state… Overrides EntityForm:: |
|
EntityDisplayFormBase:: |
public | function | Performs pre-render tasks on field_ui_table elements. | |
EntityDisplayFormBase:: |
public | function | Constructs a new EntityDisplayFormBase. | |
EntityForm:: |
protected | property | The entity type manager. | 3 |
EntityForm:: |
protected | property | The module handler service. | |
EntityForm:: |
protected | property | The name of the current operation. | |
EntityForm:: |
private | property | The entity manager. | |
EntityForm:: |
protected | function | Returns an array of supported actions for the current entity form. | 29 |
EntityForm:: |
protected | function | Returns the action form element for the current entity form. | |
EntityForm:: |
public | function | Form element #after_build callback: Updates the entity with submitted data. | |
EntityForm:: |
public | function |
Builds an updated entity object based upon the submitted form values. Overrides EntityFormInterface:: |
2 |
EntityForm:: |
public | function |
Form constructor. Overrides FormInterface:: |
10 |
EntityForm:: |
public | function |
Returns a string identifying the base form. Overrides BaseFormIdInterface:: |
5 |
EntityForm:: |
public | function |
Gets the form entity. Overrides EntityFormInterface:: |
|
EntityForm:: |
public | function |
Returns a unique string identifying the form. Overrides FormInterface:: |
10 |
EntityForm:: |
public | function |
Gets the operation identifying the form. Overrides EntityFormInterface:: |
|
EntityForm:: |
protected | function | Initialize the form state and the entity before the first form build. | 3 |
EntityForm:: |
protected | function | Prepares the entity object before the form is built first. | 3 |
EntityForm:: |
protected | function | Invokes the specified prepare hook variant. | |
EntityForm:: |
public | function | Process callback: assigns weights and hides extra fields. | |
EntityForm:: |
public | function |
Form submission handler for the 'save' action. Overrides EntityFormInterface:: |
41 |
EntityForm:: |
public | function |
Sets the form entity. Overrides EntityFormInterface:: |
|
EntityForm:: |
public | function |
Sets the entity manager for this form. Overrides EntityFormInterface:: |
|
EntityForm:: |
public | function |
Sets the entity type manager for this form. Overrides EntityFormInterface:: |
|
EntityForm:: |
public | function |
Sets the module handler for this form. Overrides EntityFormInterface:: |
|
EntityForm:: |
public | function |
Sets the operation for this form. Overrides EntityFormInterface:: |
|
EntityForm:: |
public | function | ||
EntityForm:: |
public | function | ||
EntityViewDisplayEditForm:: |
protected | property |
The display context. Either 'view' or 'form'. Overrides EntityDisplayFormBase:: |
|
EntityViewDisplayEditForm:: |
protected | function |
Alters the widget or formatter settings summary. Overrides EntityDisplayFormBase:: |
|
EntityViewDisplayEditForm:: |
protected | function |
Builds the table row structure for a single extra field. Overrides EntityDisplayFormBase:: |
|
EntityViewDisplayEditForm:: |
protected | function |
Builds the table row structure for a single field. Overrides EntityDisplayFormBase:: |
|
EntityViewDisplayEditForm:: |
public static | function |
Instantiates a new instance of this class. Overrides FormBase:: |
|
EntityViewDisplayEditForm:: |
constant | Name of the FBIA view mode. | ||
EntityViewDisplayEditForm:: |
protected | function |
Returns an array of applicable widget or formatter options for a field. Overrides EntityDisplayFormBase:: |
|
EntityViewDisplayEditForm:: |
protected | function |
Returns the ID of the default widget or formatter plugin for a field type. Overrides EntityDisplayFormBase:: |
|
EntityViewDisplayEditForm:: |
protected | function |
Returns an array of form or view mode options. Overrides EntityDisplayFormBase:: |
|
EntityViewDisplayEditForm:: |
protected | function |
Returns the form or view modes used by this form. Overrides EntityDisplayFormBase:: |
|
EntityViewDisplayEditForm:: |
protected | function |
Returns a link to the form or view mode admin page. Overrides EntityDisplayFormBase:: |
|
EntityViewDisplayEditForm:: |
protected | function |
Returns an entity display object to be used by this form. Overrides EntityDisplayFormBase:: |
|
EntityViewDisplayEditForm:: |
protected | function | Returns an array of visibility options for field labels. | |
EntityViewDisplayEditForm:: |
protected | function |
Returns the Url object for a specific entity (form) display edit form. Overrides EntityDisplayFormBase:: |
|
EntityViewDisplayEditForm:: |
public | function |
Get the regions needed to create the overview form. Overrides EntityDisplayFormBase:: |
|
EntityViewDisplayEditForm:: |
protected | function |
Returns an array containing the table headers. Overrides EntityDisplayFormBase:: |
|
EntityViewDisplayEditForm:: |
protected | function |
Adds the widget or formatter third party settings forms. Overrides EntityDisplayFormBase:: |
|
FormBase:: |
protected | property | The config factory. | 1 |
FormBase:: |
protected | property | The request stack. | 1 |
FormBase:: |
protected | property | The route match. | |
FormBase:: |
protected | function | Retrieves a configuration object. | |
FormBase:: |
protected | function | Gets the config factory for this form. | 1 |
FormBase:: |
private | function | Returns the service container. | |
FormBase:: |
protected | function | Gets the current user. | |
FormBase:: |
protected | function | Gets the request object. | |
FormBase:: |
protected | function | Gets the route match. | |
FormBase:: |
protected | function | Gets the logger for a specific channel. | |
FormBase:: |
protected | function |
Returns a redirect response object for the specified route. Overrides UrlGeneratorTrait:: |
|
FormBase:: |
public | function | Resets the configuration factory. | |
FormBase:: |
public | function | Sets the config factory for this form. | |
FormBase:: |
public | function | Sets the request stack object to use. | |
FormBase:: |
public | function |
Form validation handler. Overrides FormInterface:: |
62 |
LinkGeneratorTrait:: |
protected | property | The link generator. | 1 |
LinkGeneratorTrait:: |
protected | function | Returns the link generator. | |
LinkGeneratorTrait:: |
protected | function | Renders a link to a route given a route name and its parameters. | |
LinkGeneratorTrait:: |
public | function | Sets the link generator service. | |
LoggerChannelTrait:: |
protected | property | The logger channel factory service. | |
LoggerChannelTrait:: |
protected | function | Gets the logger for a specific channel. | |
LoggerChannelTrait:: |
public | function | Injects the logger channel factory. | |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
RedirectDestinationTrait:: |
protected | property | The redirect destination service. | 1 |
RedirectDestinationTrait:: |
protected | function | Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url. | |
RedirectDestinationTrait:: |
protected | function | Returns the redirect destination service. | |
RedirectDestinationTrait:: |
public | function | Sets the redirect destination service. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
UrlGeneratorTrait:: |
protected | property | The url generator. | |
UrlGeneratorTrait:: |
protected | function | Returns the URL generator service. | |
UrlGeneratorTrait:: |
public | function | Sets the URL generator service. | |
UrlGeneratorTrait:: |
protected | function | Generates a URL or path for a specific route based on the given parameters. |