diff --git a/panopoly_core.install b/panopoly_core.install index 2ae3acd..bee156b 100644 --- a/panopoly_core.install +++ b/panopoly_core.install @@ -243,3 +243,52 @@ function panopoly_core_update_7105() { function panopoly_core_update_7106() { variable_set('fpp_revision_locking', 'lock'); } + +/** + * Enable FPP revision locking (except when 'entity_translation' is enabled). + */ +function panopoly_core_update_7107() { + if (!module_exists('entity_translation')) { + variable_set('fpp_revision_locking', 'lock'); + } +} + +/** + * Update all Panelizer displays to point non-reusable FPPs to the vid instead + * of the fpid. + */ +function panopoly_core_update_7108(&$sandbox) { + if (function_exists('fieldable_panels_panes_update_7112')) { + return fieldable_panels_panes_update_7112($sandbox); + } +} + +/** + * Update all Panel Nodes displays to point non-reusable FPPs to the vid instead + * of the fpid. + */ +function panopoly_core_update_7109(&$sandbox) { + if (function_exists('fieldable_panels_panes_update_7113')) { + return fieldable_panels_panes_update_7113($sandbox); + } +} + +/** + * Update all Panelizer displays to point non-reusable FPPs to the vuuid instead + * of the uuid. + */ +function panopoly_core_update_7110(&$sandbox) { + if (function_exists('fieldable_panels_panes_update_7115')) { + return fieldable_panels_panes_update_7115($sandbox); + } +} + +/** + * Update all Panel Nodes displays to point non-reusable FPPs to the vuuid + * instead of the uuid. + */ +function panopoly_core_update_7111(&$sandbox) { + if (function_exists('fieldable_panels_panes_update_7116')) { + return fieldable_panels_panes_update_7116($sandbox); + } +} diff --git a/panopoly_core.make b/panopoly_core.make index dccc501..2a3fece 100644 --- a/panopoly_core.make +++ b/panopoly_core.make @@ -23,8 +23,9 @@ projects[panelizer][subdir] = contrib projects[panelizer][patch][1549608] = https://www.drupal.org/files/issues/panelizer-n1549608-26.patch projects[panelizer][patch][2788851] = https://www.drupal.org/files/issues/panelizer-administer-panelizer-2788851-2.patch -projects[fieldable_panels_panes][version] = 1.10 +projects[fieldable_panels_panes][version] = 1.11 projects[fieldable_panels_panes][subdir] = contrib +projects[fieldable_panels_panes][patch][2826205] = https://www.drupal.org/files/issues/fieldable_panels_panes-n2826205-39.patch projects[pm_existing_pages][version] = 1.4 projects[pm_existing_pages][subdir] = contrib