diff options
author | Cash Costello <cash.costello@gmail.com> | 2010-07-30 02:03:23 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2010-07-30 02:03:23 +0000 |
commit | 9c0cc73e8ff5c389482579452312ca67e9c01a2c (patch) | |
tree | 47b680ee4dffbe890e6ad80e309db8c9174ac741 /start.php | |
parent | 73403645808a81425381f43c25e0ea2c92705312 (diff) | |
download | elgg-9c0cc73e8ff5c389482579452312ca67e9c01a2c.tar.gz elgg-9c0cc73e8ff5c389482579452312ca67e9c01a2c.tar.bz2 |
Tidypics now requires Elgg 1.5 or greater
Diffstat (limited to 'start.php')
-rw-r--r-- | start.php | 11 |
1 files changed, 3 insertions, 8 deletions
@@ -56,20 +56,15 @@ function tidypics_init() { register_entity_type('object','image'); register_entity_type('object','album'); - if (function_exists('add_group_tool_option')) { - add_group_tool_option('photos', elgg_echo('tidypics:enablephotos'), true); - } + add_group_tool_option('photos', elgg_echo('tidypics:enablephotos'), true); if (get_plugin_setting('grp_perm_override', 'tidypics') != "disabled") { register_plugin_hook('permissions_check', 'object', 'tidypics_permission_override'); } // Register for notifications - if (is_callable('register_notification_object')) { - register_notification_object('object', 'album', elgg_echo('tidypics:newalbum')); - - register_plugin_hook('notify:entity:message', 'object', 'tidypics_notify_message'); - } + register_notification_object('object', 'album', elgg_echo('tidypics:newalbum')); + register_plugin_hook('notify:entity:message', 'object', 'tidypics_notify_message'); // slideshow plugin hook register_plugin_hook('tp_slideshow', 'album', 'tidypics_slideshow'); |