aboutsummaryrefslogtreecommitdiff
path: root/mod/pages/start.php
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2013-04-13 06:47:06 -0700
committerCash Costello <cash.costello@gmail.com>2013-04-13 06:47:06 -0700
commit8b53f353c5f4eb5b7c893369142882c856d3c83b (patch)
tree4d52d280b071dca872f87300461e60eeaf2196e4 /mod/pages/start.php
parentd679c1578633a15c91561b1a23c8eee281823a75 (diff)
parent6dac3f3be526a0fdc2aea05444ed3fe0d4e7bcf5 (diff)
downloadelgg-8b53f353c5f4eb5b7c893369142882c856d3c83b.tar.gz
elgg-8b53f353c5f4eb5b7c893369142882c856d3c83b.tar.bz2
Merge pull request #5305 from cash/delete_top_page
Moving sub pages to top pages when parent deleted
Diffstat (limited to 'mod/pages/start.php')
-rw-r--r--mod/pages/start.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/mod/pages/start.php b/mod/pages/start.php
index 8debeef24..c1183c9bf 100644
--- a/mod/pages/start.php
+++ b/mod/pages/start.php
@@ -82,6 +82,8 @@ function pages_init() {
// register ecml views to parse
elgg_register_plugin_hook_handler('get_views', 'ecml', 'pages_ecml_views_hook');
+
+ elgg_register_event_handler('upgrade', 'system', 'pages_run_upgrades');
}
/**
@@ -362,3 +364,14 @@ function pages_ecml_views_hook($hook, $entity_type, $return_value, $params) {
return $return_value;
}
+
+/**
+ * Process upgrades for the pages plugin
+ */
+function pages_run_upgrades() {
+ $path = elgg_get_plugins_path() . 'pages/upgrades/';
+ $files = elgg_get_upgrade_files($path);
+ foreach ($files as $file) {
+ include "$path{$file}";
+ }
+}