From d1b4235b5dd26559334a7b57dcf9e53a3042e354 Mon Sep 17 00:00:00 2001 From: brettp Date: Sun, 27 Feb 2011 22:48:42 +0000 Subject: Fixes #3011. on_activate and on_deactivate work for plugins now. Updated the categories plugin to use it. git-svn-id: http://code.elgg.org/elgg/trunk@8507 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/categories/manifest.xml | 4 ++-- mod/categories/start.php | 6 ++++-- 2 files changed, 6 insertions(+), 4 deletions(-) (limited to 'mod/categories') diff --git a/mod/categories/manifest.xml b/mod/categories/manifest.xml index 89c7d452b..9b004c1d2 100644 --- a/mod/categories/manifest.xml +++ b/mod/categories/manifest.xml @@ -13,6 +13,6 @@ 2010030101 advanced - categories_on_enable - categories_on_disable + categories_on_activate + categories_on_deactivate diff --git a/mod/categories/start.php b/mod/categories/start.php index bc272274f..9ff729b25 100644 --- a/mod/categories/start.php +++ b/mod/categories/start.php @@ -58,7 +58,9 @@ function categories_save($event, $object_type, $object) { /** * Add a reminder to set default categories. */ -function categories_on_enable() { +function categories_on_activate() { + $site = elgg_get_site_entity(); + if (!$site->categories) { $url = elgg_normalize_url('pg/admin/plugin_settings/categories'); $message = elgg_echo('categories:on_enable_reminder', array($url)); @@ -70,6 +72,6 @@ function categories_on_enable() { /** * Clean up admin notices on disable. */ -function categories_on_disable() { +function categories_on_deactivate() { elgg_delete_admin_notice('categories_admin_notice_no_categories'); } -- cgit v1.2.3