rocketship_core-8.x-2.0-alpha11/src/Plugin/Layout/DSLayoutThreeTwoOneCols.php
src/Plugin/Layout/DSLayoutThreeTwoOneCols.php
<?php namespace Drupal\rocketship_core\Plugin\Layout; use Drupal\Core\Form\FormStateInterface; use Drupal\Core\Layout\LayoutDefault; use Drupal\Core\Plugin\PluginFormInterface; /** * Class DSLayoutThreeTwoOneCols. * * @package Drupal\rocketship_core\Plugin\Layout */ class DSLayoutThreeTwoOneCols extends LayoutDefault implements PluginFormInterface { /** * {@inheritdoc} */ public function buildConfigurationForm(array $form, FormStateInterface $form_state) { return $form; } /** * {@inheritdoc} */ public function submitConfigurationForm(array &$form, FormStateInterface $form_state) { // parent::submitConfigurationForm($form, $form_state);. } /** * {@inheritdoc} */ public function validateConfigurationForm(array &$form, FormStateInterface $form_state) { } }