You are here

protected function PanelizerWizardContextForm::getContextOperationsRouteInfo in Panelizer 8.5

Same name and namespace in other branches
  1. 8.3 src/Form/PanelizerWizardContextForm.php \Drupal\panelizer\Form\PanelizerWizardContextForm::getContextOperationsRouteInfo()
  2. 8.4 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()
PanelizerWizardContextForm::addContext in src/Form/PanelizerWizardContextForm.php

File

src/Form/PanelizerWizardContextForm.php, line 112

Class

PanelizerWizardContextForm
Simple wizard step form.

Namespace

Drupal\panelizer\Form

Code

protected function getContextOperationsRouteInfo($cached_values, $machine_name, $row) {
  return [
    'panelizer.wizard.step.context',
    [
      'machine_name' => $machine_name,
      'context_id' => $row,
    ],
  ];
}