aboutsummaryrefslogtreecommitdiff
path: root/mod/thewire/start.php
diff options
context:
space:
mode:
authorBrett Profitt <brett.profitt@gmail.com>2012-12-27 16:59:49 -0500
committerBrett Profitt <brett.profitt@gmail.com>2012-12-27 16:59:49 -0500
commit3b295750a02fbdb7f3ea6a3d75cf6260df6a2d46 (patch)
tree5533307aa7ab2f90788f1777eb18f1cc42e82ed4 /mod/thewire/start.php
parentf8da2cee8743cf3cbc60c805ce5c15367e6ccf94 (diff)
downloadelgg-3b295750a02fbdb7f3ea6a3d75cf6260df6a2d46.tar.gz
elgg-3b295750a02fbdb7f3ea6a3d75cf6260df6a2d46.tar.bz2
Fixes #4882. Added upgrade for The Wire to register thewire objects as ElggWire class.
Diffstat (limited to 'mod/thewire/start.php')
-rw-r--r--mod/thewire/start.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/mod/thewire/start.php b/mod/thewire/start.php
index 1ba48263a..8b01cc57a 100644
--- a/mod/thewire/start.php
+++ b/mod/thewire/start.php
@@ -67,6 +67,8 @@ function thewire_init() {
elgg_register_action("thewire/delete", "$action_base/delete.php");
elgg_register_plugin_hook_handler('unit_test', 'system', 'thewire_test');
+
+ elgg_register_event_handler('upgrade', 'system', 'thewire_run_upgrades');
}
/**
@@ -462,3 +464,12 @@ function thewire_test($hook, $type, $value, $params) {
$value[] = $CONFIG->pluginspath . 'thewire/tests/regex.php';
return $value;
}
+
+function thewire_run_upgrades() {
+ $path = dirname(__FILE__) . '/upgrades/';
+ $files = elgg_get_upgrade_files($path);
+
+ foreach ($files as $file) {
+ include $path . $file;
+ }
+} \ No newline at end of file