You are here

protected function AddVariantSelectionDelete::getContexts in Page Manager 8

Same name and namespace in other branches
  1. 8.4 page_manager_ui/src/Form/AddVariantSelectionDelete.php \Drupal\page_manager_ui\Form\AddVariantSelectionDelete::getContexts()

Custom logic for retrieving the contexts array from cached_values.

Parameters

$cached_values:

Return value

\Drupal\Core\Plugin\Context\ContextInterface[]

Overrides ConditionDelete::getContexts

File

page_manager_ui/src/Form/AddVariantSelectionDelete.php, line 59
Contains \Drupal\page_manager_ui\Form\AddVariantSelectionDelete.

Class

AddVariantSelectionDelete

Namespace

Drupal\page_manager_ui\Form

Code

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