You are here

ProcessBase.php in Express 8

File

themes/contrib/bootstrap/src/Plugin/Process/ProcessBase.php
View source
<?php

/**
 * @file
 * Contains \Drupal\bootstrap\Plugin\Process\ProcessBase.
 */
namespace Drupal\bootstrap\Plugin\Process;

use Drupal\bootstrap\Plugin\PluginBase;
use Drupal\bootstrap\Utility\Element;
use Drupal\Core\Form\FormStateInterface;

/**
 * Base process class used to process elements.
 *
 * @ingroup plugins_process
 */
class ProcessBase extends PluginBase implements ProcessInterface {

  /**
   * {@inheritdoc}
   */
  public static function process(array $element, FormStateInterface $form_state, array &$complete_form) {
    if (!empty($element['#bootstrap_ignore_process'])) {
      return $element;
    }
    static::processElement(Element::create($element, $form_state), $form_state, $complete_form);
    return $element;
  }

  /**
   * Process a specific form element.
   *
   * @param \Drupal\bootstrap\Utility\Element $element
   *   The element object.
   * @param \Drupal\Core\Form\FormStateInterface $form_state
   *   The current state of the form.
   * @param array $complete_form
   *   The complete form structure.
   *
   * @see \Drupal\bootstrap\Plugin\Process\ProcessBase::process()
   * @see \Drupal\bootstrap\Plugin\Alter\ElementInfo::alter()
   */
  public static function processElement(Element $element, FormStateInterface $form_state, array &$complete_form) {
  }

}

Classes

Namesort descending Description
ProcessBase Base process class used to process elements.