You are here

AddVariantSelectionConfigure.php in Page Manager 8.4

Same filename and directory in other branches
  1. 8 page_manager_ui/src/Form/AddVariantSelectionConfigure.php

File

page_manager_ui/src/Form/AddVariantSelectionConfigure.php
View source
<?php

namespace Drupal\page_manager_ui\Form;

use Drupal\ctools\Form\ConditionConfigure;
class AddVariantSelectionConfigure extends ConditionConfigure {

  /**
   * Get the page variant.
   *
   * @param array $cached_values
   *   The cached values from the wizard.
   *
   * @return \Drupal\page_manager\PageVariantInterface
   */
  protected function getPageVariant($cached_values) {
    return $cached_values['page_variant'];
  }

  /**
   * {@inheritdoc}
   */
  protected function getParentRouteInfo($cached_values) {
    $page_variant = $this
      ->getPageVariant($cached_values);
    return [
      'entity.page_variant.add_step_form',
      [
        'page' => $page_variant
          ->getPage()
          ->id(),
        'machine_name' => $this->machine_name,
        'step' => 'selection',
      ],
    ];
  }

  /**
   * {@inheritdoc}
   */
  protected function getConditions($cached_values) {
    $page_variant = $this
      ->getPageVariant($cached_values);
    return $page_variant
      ->get('selection_criteria');
  }

  /**
   * {@inheritdoc}
   */
  protected function setConditions($cached_values, $conditions) {
    $page_variant = $this
      ->getPageVariant($cached_values);
    $page_variant
      ->set('selection_criteria', $conditions);
    return $cached_values;
  }

  /**
   * {@inheritdoc}
   */
  protected function getContexts($cached_values) {
    $page_variant = $this
      ->getPageVariant($cached_values);
    return $page_variant
      ->getContexts();
  }

}

Classes