You are here

protected function AccessDelete::getContexts in Page Manager 8.4

Same name and namespace in other branches
  1. 8 page_manager_ui/src/Form/AccessDelete.php \Drupal\page_manager_ui\Form\AccessDelete::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/AccessDelete.php, line 47

Class

AccessDelete

Namespace

Drupal\page_manager_ui\Form

Code

protected function getContexts($cached_values) {

  /** @var $page \Drupal\page_manager\PageInterface */
  $page = $cached_values['page'];
  return $page
    ->getContexts();
}