From c8f6c3c934df01bf969e3d91ae67f0887de10da9 Mon Sep 17 00:00:00 2001 From: ewinslow Date: Wed, 10 Nov 2010 22:22:40 +0000 Subject: Fixes #2367: With fear and trepidation, converting events/plugin hooks to use elgg_ prefixed versions git-svn-id: http://code.elgg.org/elgg/trunk@7284 36083f99-b078-4883-b0ff-0f9b5a30f544 --- documentation/stubs/config.php | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'documentation/stubs') diff --git a/documentation/stubs/config.php b/documentation/stubs/config.php index 67aab304d..86ba54e6d 100644 --- a/documentation/stubs/config.php +++ b/documentation/stubs/config.php @@ -11,8 +11,8 @@ /** * Event information for the events subsystem. * - * Events are added with {@link register_elgg_event_handler()} and - * can be removed in >= 1.8 with {@link unregister_elgg_event_handler()}. + * Events are added with {@link elgg_register_event_handler()} and + * can be removed in >= 1.8 with {@link elgg_unregister_event_handler()}. * * Events are stored as a multidimensional array in the format: * @@ -22,17 +22,17 @@ * @global array $CONFIG->events * @name $CONFIG->events * @see events() - * @see register_elgg_event_handler() - * @see unregister_elgg_event_handler() - * @see trigger_elgg_event() + * @see elgg_register_event_handler() + * @see elgg_unregister_event_handler() + * @see elgg_trigger_event() */ $CONFIG->events; /** * Plugin Hook information for the plugin hooks subsystem. * - * Hooks are added with {@link register_plugin_hook()} and - * can be removed in >= 1.8 with {@link unregister_plugin_hook()}. + * Hooks are added with {@link elgg_register_plugin_hook_handler()} and + * can be removed in >= 1.8 with {@link elgg_unregister_plugin_hook_handler()}. * * Hooks are stored as a multidimensional array in the format: * @@ -40,9 +40,9 @@ $CONFIG->events; * * * @global array $CONFIG->hooks - * @see register_plugin_hook() - * @see unregister_plugin_hook() - * @see trigger_plugin_hook() + * @see elgg_register_plugin_hook_handler() + * @see elgg_unregister_plugin_hook_handler() + * @see elgg_trigger_plugin_hook() */ $CONFIG->hooks; -- cgit v1.2.3