protected function PanelizerWizardContextForm::getContextOperationsRouteInfo in Panelizer 8.4
Same name and namespace in other branches
- 8.5 src/Form/PanelizerWizardContextForm.php \Drupal\panelizer\Form\PanelizerWizardContextForm::getContextOperationsRouteInfo()
- 8.3 src/Form/PanelizerWizardContextForm.php \Drupal\panelizer\Form\PanelizerWizardContextForm::getContextOperationsRouteInfo()
Parameters
mixed $cached_values:
string $machine_name:
string $row:
Return value
array
Overrides ManageContext::getContextOperationsRouteInfo
1 call to PanelizerWizardContextForm::getContextOperationsRouteInfo()
File
- src/
Form/ PanelizerWizardContextForm.php, line 90
Class
- PanelizerWizardContextForm
- Simple wizard step form.
Namespace
Drupal\panelizer\FormCode
protected function getContextOperationsRouteInfo($cached_values, $machine_name, $row) {
return [
'panelizer.wizard.step.context',
[
'machine_name' => $machine_name,
'context_id' => $row,
],
];
}