QuickEditFieldForm::getFormId

public QuickEditFieldForm::getFormId() Returns a unique string identifying the form. Return value string The unique string identifying the form. Overrides FormInterface::getFormId File core/modules/quickedit/src/Form/QuickEditFieldForm.php, line 84 Class QuickEditFieldForm Builds and process a form for editing a single entity field. Namespace Drupal\quickedit\Form Code public function getFormId() { return 'quickedit_field_form'; }

QuickEditFieldForm::create

public static QuickEditFieldForm::create(ContainerInterface $container) Instantiates a new instance of this class. This is a factory method that returns a new instance of this class. The factory should pass any needed dependencies into the constructor of this class, but not the container itself. Every call to this method must return a new instance of this class; that is, it may not implement a singleton. Parameters \Symfony\Component\DependencyInjection\ContainerInterface $container: The servi

QuickEditFieldForm::buildForm

public QuickEditFieldForm::buildForm(array $form, FormStateInterface $form_state, EntityInterface $entity = NULL, $field_name = NULL) Builds a form for a single entity field. Overrides FormInterface::buildForm File core/modules/quickedit/src/Form/QuickEditFieldForm.php, line 93 Class QuickEditFieldForm Builds and process a form for editing a single entity field. Namespace Drupal\quickedit\Form Code public function buildForm(array $form, FormStateInterface $form_state, EntityInterface

QuickEditFieldForm::buildEntity

protected QuickEditFieldForm::buildEntity(array $form, FormStateInterface $form_state) Returns a cloned entity containing updated field values. Calling code may then validate the returned entity, and if valid, transfer it back to the form state and save it. File core/modules/quickedit/src/Form/QuickEditFieldForm.php, line 176 Class QuickEditFieldForm Builds and process a form for editing a single entity field. Namespace Drupal\quickedit\Form Code protected function buildEntity(array $f

QuickEditFieldForm::$validator

The typed data validator. Type: \Symfony\Component\Validator\Validator\ValidatorInterface File core/modules/quickedit/src/Form/QuickEditFieldForm.php, line 48 Class QuickEditFieldForm Builds and process a form for editing a single entity field. Namespace Drupal\quickedit\Form Code protected $validator;

QuickEditFieldForm::$tempStoreFactory

Stores the tempstore factory. Type: \Drupal\user\PrivateTempStoreFactory File core/modules/quickedit/src/Form/QuickEditFieldForm.php, line 27 Class QuickEditFieldForm Builds and process a form for editing a single entity field. Namespace Drupal\quickedit\Form Code protected $tempStoreFactory;

QuickEditFieldForm::$nodeTypeStorage

The node type storage. Type: \Drupal\Core\Entity\EntityStorageInterface File core/modules/quickedit/src/Form/QuickEditFieldForm.php, line 41 Class QuickEditFieldForm Builds and process a form for editing a single entity field. Namespace Drupal\quickedit\Form Code protected $nodeTypeStorage;

QuickEditFieldForm::$moduleHandler

The module handler. Type: \Drupal\Core\Extension\ModuleHandlerInterface File core/modules/quickedit/src/Form/QuickEditFieldForm.php, line 34 Class QuickEditFieldForm Builds and process a form for editing a single entity field. Namespace Drupal\quickedit\Form Code protected $moduleHandler;

QuickEditFieldForm

Builds and process a form for editing a single entity field. Hierarchy class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTraitclass \Drupal\quickedit\Form\QuickEditFieldForm File core/modules/quickedit/src/Form/QuickEditFieldForm.php, line 20 Namespace Drupal\quickedit\Form Members Name Modifiers Type Descr

QuickEditController::__construct

public QuickEditController::__construct(PrivateTempStoreFactory $temp_store_factory, MetadataGeneratorInterface $metadata_generator, EditorSelectorInterface $editor_selector, RendererInterface $renderer) Constructs a new QuickEditController. Parameters \Drupal\user\PrivateTempStoreFactory $temp_store_factory: The PrivateTempStore factory. \Drupal\quickedit\MetadataGeneratorInterface $metadata_generator: The in-place editing metadata generator. \Drupal\quickedit\EditorSelectorInterface $editor_