protected function AccessConfigure::getConditions in Page Manager 8
Same name and namespace in other branches
- 8.4 page_manager_ui/src/Form/AccessConfigure.php \Drupal\page_manager_ui\Form\AccessConfigure::getConditions()
Custom logic for retrieving the conditions array from cached_values.
Parameters
$cached_values:
Return value
array
Overrides ConditionConfigure::getConditions
File
- page_manager_ui/
src/ Form/ AccessConfigure.php, line 32 - Contains \Drupal\page_manager_ui\Form\AccessConfigure;
Class
Namespace
Drupal\page_manager_ui\FormCode
protected function getConditions($cached_values) {
/** @var $page \Drupal\page_manager\PageInterface */
$page = $cached_values['page'];
return $page
->get('access_conditions');
}