function esi_panels_schema_alter in ESI: Edge Side Includes 7.3
Implements hook_schema_alter().
File
- modules/
esi_panels/ esi_panels.install, line 18 - Install/Uninstall/Schema hooks for ESI Panels.
Code
function esi_panels_schema_alter(&$schema) {
// Replace the standard save-callback for the Panelizer module, to control
// the choice of pipeline on save.
if (isset($schema['panelizer_defaults'])) {
$schema['panelizer_defaults']['export']['save callback'] = 'esi_panels__panelizer_export_save_callback';
}
}