diff options
| author | Silvio Rhatto <rhatto@riseup.net> | 2013-02-16 11:48:34 -0200 | 
|---|---|---|
| committer | Silvio Rhatto <rhatto@riseup.net> | 2013-02-16 11:48:34 -0200 | 
| commit | b6ee1b93376d42f8a8fcee0127bc10f84d1e018e (patch) | |
| tree | cbde5e4d0b745c3bb854c215bccea8b2d6bb367e /mod/thewire/start.php | |
| parent | 694306cf537fb8cb45beb7d4fd63c5b56cb5c4da (diff) | |
| parent | 5aff5b3913fbb6226d8fb3162453c58888fba38d (diff) | |
| download | elgg-b6ee1b93376d42f8a8fcee0127bc10f84d1e018e.tar.gz elgg-b6ee1b93376d42f8a8fcee0127bc10f84d1e018e.tar.bz2  | |
Merge branch 'master' into saravea
Diffstat (limited to 'mod/thewire/start.php')
| -rw-r--r-- | mod/thewire/start.php | 11 | 
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  | 
