ViewEditForm::rebuildCurrentTab

public ViewEditForm::rebuildCurrentTab(ViewUI $view, AjaxResponse $response, $display_id) Regenerate the current tab for AJAX updates. Parameters \Drupal\views_ui\ViewUI $view: The view to regenerate its tab. \Drupal\Core\Ajax\AjaxResponse $response: The response object to add new commands to. string $display_id: The display ID of the tab to regenerate. File core/modules/views_ui/src/ViewEditForm.php, line 654 Class ViewEditForm Form controller for the Views edit form. Namespace Drupal

ViewEditForm::buildOptionForm

public ViewEditForm::buildOptionForm(ViewUI $view, $id, $option, $display) Build a renderable array representing one option on the edit form. This function might be more logical as a method on an object, if a suitable object emerges out of refactoring. File core/modules/views_ui/src/ViewEditForm.php, line 878 Class ViewEditForm Form controller for the Views edit form. Namespace Drupal\views_ui Code public function buildOptionForm(ViewUI $view, $id, $option, $display) { $option_build

ViewEditForm::actions

protected ViewEditForm::actions(array $form, FormStateInterface $form_state) Returns an array of supported actions for the current entity form. @todo Consider introducing a 'preview' action here, since it is used by many entity types. Overrides EntityForm::actions File core/modules/views_ui/src/ViewEditForm.php, line 216 Class ViewEditForm Form controller for the Views edit form. Namespace Drupal\views_ui Code protected function actions(array $form, FormStateInterface $form_state) {

ViewEditForm::form

public ViewEditForm::form(array $form, FormStateInterface $form_state) Gets the actual form array to be built. Overrides EntityForm::form See also \Drupal\Core\Entity\EntityForm::processForm() \Drupal\Core\Entity\EntityForm::afterBuild() File core/modules/views_ui/src/ViewEditForm.php, line 87 Class ViewEditForm Form controller for the Views edit form. Namespace Drupal\views_ui Code public function form(array $form, FormStateInterface $form_state) { $view = $this->entity; $disp

ViewEditForm::cancel

public ViewEditForm::cancel(array $form, FormStateInterface $form_state) Form submission handler for the 'cancel' action. Parameters array $form: An associative array containing the structure of the form. \Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. File core/modules/views_ui/src/ViewEditForm.php, line 328 Class ViewEditForm Form controller for the Views edit form. Namespace Drupal\views_ui Code public function cancel(array $form, FormStateInterface

ViewEditForm::create

public static ViewEditForm::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 service con

ViewEditForm::$elementInfo

The element info manager. Type: \Drupal\Core\Render\ElementInfoManagerInterface File core/modules/views_ui/src/ViewEditForm.php, line 51 Class ViewEditForm Form controller for the Views edit form. Namespace Drupal\views_ui Code protected $elementInfo;

ViewEditForm::$requestStack

The request object. Type: \Symfony\Component\HttpFoundation\RequestStack Overrides FormBase::$requestStack File core/modules/views_ui/src/ViewEditForm.php, line 37 Class ViewEditForm Form controller for the Views edit form. Namespace Drupal\views_ui Code protected $requestStack;

ViewEditForm::$tempStore

The views temp store. Type: \Drupal\user\SharedTempStore File core/modules/views_ui/src/ViewEditForm.php, line 30 Class ViewEditForm Form controller for the Views edit form. Namespace Drupal\views_ui Code protected $tempStore;

ViewEditForm

Form controller for the Views edit form. Hierarchy class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTraitclass \Drupal\Core\Entity\EntityForm implements EntityFormInterfaceclass \Drupal\views_ui\ViewFormBaseclass \Drupal\views_ui\ViewEditForm File core/modules/views_ui/src/ViewEditForm.php, line 23 Namespace Drup