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