You are here

class NestedEntityTestForm in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/field/tests/modules/field_test/src/Form/NestedEntityTestForm.php \Drupal\field_test\Form\NestedEntityTestForm

Provides a form for field_test routes.

Hierarchy

Expanded class hierarchy of NestedEntityTestForm

1 string reference to 'NestedEntityTestForm'
field_test.routing.yml in core/modules/field/tests/modules/field_test/field_test.routing.yml
core/modules/field/tests/modules/field_test/field_test.routing.yml

File

core/modules/field/tests/modules/field_test/src/Form/NestedEntityTestForm.php, line 18
Contains \Drupal\field_test\Form\NestedEntityTestForm.

Namespace

Drupal\field_test\Form
View source
class NestedEntityTestForm extends FormBase {

  /**
   * {@inheritdoc]
   */
  public function getFormId() {
    return 'field_test_entity_nested_form';
  }

  /**
   * {@inheritdoc]
   */
  public function buildForm(array $form, FormStateInterface $form_state, EntityInterface $entity_1 = NULL, EntityInterface $entity_2 = NULL) {

    // First entity.
    $form_state
      ->set('entity_1', $entity_1);
    $form_display_1 = EntityFormDisplay::collectRenderDisplay($entity_1, 'default');
    $form_state
      ->set('form_display_1', $form_display_1);
    $form_display_1
      ->buildForm($entity_1, $form, $form_state);

    // Second entity.
    $form_state
      ->set('entity_2', $entity_2);
    $form_display_2 = EntityFormDisplay::collectRenderDisplay($entity_2, 'default');
    $form_state
      ->set('form_display_2', $form_display_2);
    $form['entity_2'] = array(
      '#type' => 'details',
      '#title' => t('Second entity'),
      '#tree' => TRUE,
      '#parents' => array(
        'entity_2',
      ),
      '#weight' => 50,
    );
    $form_display_2
      ->buildForm($entity_2, $form['entity_2'], $form_state);
    $form['save'] = array(
      '#type' => 'submit',
      '#value' => t('Save'),
      '#weight' => 100,
    );
    return $form;
  }

  /**
   * {@inheritdoc]
   */
  public function validateForm(array &$form, FormStateInterface $form_state) {
    $entity_1 = $form_state
      ->get('entity_1');

    /** @var \Drupal\Core\Entity\Display\EntityFormDisplayInterface $form_display_1 */
    $form_display_1 = $form_state
      ->get('form_display_1');
    $form_display_1
      ->extractFormValues($entity_1, $form, $form_state);
    $form_display_1
      ->validateFormValues($entity_1, $form, $form_state);
    $entity_2 = $form_state
      ->get('entity_2');

    /** @var \Drupal\Core\Entity\Display\EntityFormDisplayInterface $form_display_2 */
    $form_display_2 = $form_state
      ->get('form_display_2');
    $form_display_2
      ->extractFormValues($entity_2, $form['entity_2'], $form_state);
    $form_display_2
      ->validateFormValues($entity_2, $form['entity_2'], $form_state);
  }

  /**
   * {@inheritdoc]
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {

    /** @var \Drupal\Core\Entity\EntityInterface $entity_1 */
    $entity_1 = $form_state
      ->get('entity_1');
    $entity_1
      ->save();

    /** @var \Drupal\Core\Entity\EntityInterface $entity_2 */
    $entity_2 = $form_state
      ->get('entity_2');
    $entity_2
      ->save();
    drupal_set_message($this
      ->t('test_entities @id_1 and @id_2 have been updated.', array(
      '@id_1' => $entity_1
        ->id(),
      '@id_2' => $entity_2
        ->id(),
    )));
  }

}

Members

Namesort descending Modifiers Type Description Overrides
DependencySerializationTrait::$_serviceIds protected property An array of service IDs keyed by property name used for serialization.
DependencySerializationTrait::__sleep public function 1
DependencySerializationTrait::__wakeup public function 2
FormBase::$configFactory protected property The config factory. 3
FormBase::$loggerFactory protected property The logger factory.
FormBase::$requestStack protected property The request stack. 1
FormBase::$routeMatch protected property The route match.
FormBase::config protected function Retrieves a configuration object.
FormBase::configFactory protected function Gets the config factory for this form. 3
FormBase::container private function Returns the service container.
FormBase::create public static function Instantiates a new instance of this class. Overrides ContainerInjectionInterface::create 84
FormBase::currentUser protected function Gets the current user.
FormBase::getRequest protected function Gets the request object.
FormBase::getRouteMatch protected function Gets the route match.
FormBase::logger protected function Gets the logger for a specific channel.
FormBase::resetConfigFactory public function Resets the configuration factory.
FormBase::setConfigFactory public function Sets the config factory for this form.
FormBase::setRequestStack public function Sets the request stack object to use.
LinkGeneratorTrait::$linkGenerator protected property The link generator. 1
LinkGeneratorTrait::getLinkGenerator protected function Returns the link generator.
LinkGeneratorTrait::l protected function Renders a link to a route given a route name and its parameters.
LinkGeneratorTrait::setLinkGenerator public function Sets the link generator service.
NestedEntityTestForm::buildForm public function {@inheritdoc] Overrides FormInterface::buildForm
NestedEntityTestForm::getFormId public function {@inheritdoc] Overrides FormInterface::getFormId
NestedEntityTestForm::submitForm public function {@inheritdoc] Overrides FormInterface::submitForm
NestedEntityTestForm::validateForm public function {@inheritdoc] Overrides FormBase::validateForm
RedirectDestinationTrait::$redirectDestination protected property The redirect destination service.
RedirectDestinationTrait::getDestinationArray protected function Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url.
RedirectDestinationTrait::getRedirectDestination protected function Returns the redirect destination service.
RedirectDestinationTrait::setRedirectDestination public function Sets the redirect destination service.
StringTranslationTrait::$stringTranslation protected property The string translation service.
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.
UrlGeneratorTrait::$urlGenerator protected property The url generator.
UrlGeneratorTrait::getUrlGenerator protected function Returns the URL generator service.
UrlGeneratorTrait::redirect protected function Returns a redirect response object for the specified route.
UrlGeneratorTrait::setUrlGenerator public function Sets the URL generator service.
UrlGeneratorTrait::url protected function Generates a URL or path for a specific route based on the given parameters.