ConfigEntityTypeInterface::PREFIX_LENGTH

Length limit of the configuration entity prefix. Configuration entity names are composed of two parts: The config prefix, which is returned by getConfigPrefix() and is composed of: The provider module name (limited to 50 characters by DRUPAL_EXTENSION_NAME_MAX_LENGTH). The module-specific namespace identifier, which defaults to the configuration entity type ID. Entity type IDs are limited to 32 characters by EntityTypeInterface::ID_MAX_LENGTH. The configuration entity ID. So, a typical confi

ContentEntityStorageBase::onFieldDefinitionCreate

public ContentEntityStorageBase::onFieldDefinitionCreate(FieldDefinitionInterface $field_definition) Reacts to the creation of a field. Parameters \Drupal\Core\Field\FieldDefinitionInterface $field_definition: The field definition created. Overrides FieldDefinitionListenerInterface::onFieldDefinitionCreate File core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php, line 159 Class ContentEntityStorageBase Base class for content entity storage handlers. Namespace Drupal\Core\Entity C

Checkboxes::getCheckedCheckboxes

public static Checkboxes::getCheckedCheckboxes(array $input) Determines which checkboxes were checked when a form is submitted. Parameters array $input: An array returned by the FormAPI for a set of checkboxes. Return value array An array of keys that were checked. File core/lib/Drupal/Core/Render/Element/Checkboxes.php, line 134 Class Checkboxes Provides a form element for a set of checkboxes. Namespace Drupal\Core\Render\Element Code public static function getCheckedCheckboxes(arra

ContactForm::getRedirectPath

public ContactForm::getRedirectPath() Returns the path for redirect. Return value string The redirect path. Overrides ContactFormInterface::getRedirectPath File core/modules/contact/src/Entity/ContactForm.php, line 132 Class ContactForm Defines the contact form entity. Namespace Drupal\contact\Entity Code public function getRedirectPath() { return $this->redirect; }

ConfigHandlerExtra::getFormId

public ConfigHandlerExtra::getFormId() Returns a unique string identifying the form. Return value string The unique string identifying the form. Overrides FormInterface::getFormId File core/modules/views_ui/src/Form/Ajax/ConfigHandlerExtra.php, line 41 Class ConfigHandlerExtra Provides a form for configuring extra information for a Views UI item. Namespace Drupal\views_ui\Form\Ajax Code public function getFormId() { return 'views_ui_config_item_extra_form'; }

EditorSelector::$editorManager

The manager for editor plugins. Type: \Drupal\Component\Plugin\PluginManagerInterface File core/modules/quickedit/src/EditorSelector.php, line 20 Class EditorSelector Selects an in-place editor (an InPlaceEditor plugin) for a field. Namespace Drupal\quickedit Code protected $editorManager;

CronAccessCheck

Access check for cron routes. Hierarchy class \Drupal\system\Access\CronAccessCheck implements AccessInterface File core/modules/system/src/Access/CronAccessCheck.php, line 11 Namespace Drupal\system\Access Members Name Modifiers Type Description CronAccessCheck::access public function Checks access.

BlockBase::blockForm

public BlockBase::blockForm($form, FormStateInterface $form_state) Returns the configuration form elements specific to this block plugin. Blocks that need to add form elements to the normal block configuration form should implement this method. Parameters array $form: The form definition array for the block configuration form. \Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. Return value array $form The renderable form array representing the entire configuratio

EntityType::$bundle_of

The name of the entity type for which bundles are provided. Type: string|null File core/lib/Drupal/Core/Entity/EntityType.php, line 133 Class EntityType Provides an implementation of an entity type and its metadata. Namespace Drupal\Core\Entity Code protected $bundle_of = NULL;

FieldStorageAddForm::__construct

public FieldStorageAddForm::__construct(EntityManagerInterface $entity_manager, FieldTypePluginManagerInterface $field_type_plugin_manager, QueryFactory $query_factory, ConfigFactoryInterface $config_factory) Constructs a new FieldStorageAddForm object. Parameters \Drupal\Core\Entity\EntityManagerInterface $entity_manager: The entity manager. \Drupal\Core\Field\FieldTypePluginManagerInterface $field_type_plugin_manager: The field type plugin manager. \Drupal\Core\Entity\Query\QueryFactory $que