diff options
author | misja <misja@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-08 15:14:54 +0000 |
---|---|---|
committer | misja <misja@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-08 15:14:54 +0000 |
commit | bf79a8fe8a332546f96f00edc424377f6200344e (patch) | |
tree | 276fc4403e69b6842cb7706600067161c7d117ec /engine/lib/plugins.php | |
parent | 7a2ae99931f3ecbcfbdb740c96149e41212a2a31 (diff) | |
download | elgg-bf79a8fe8a332546f96f00edc424377f6200344e.tar.gz elgg-bf79a8fe8a332546f96f00edc424377f6200344e.tar.bz2 |
Misja Hoebe <misja@curverider.co.uk> More docstring fixes
git-svn-id: https://code.elgg.org/elgg/trunk@421 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/plugins.php')
-rw-r--r-- | engine/lib/plugins.php | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/engine/lib/plugins.php b/engine/lib/plugins.php index 868772ec7..e5b292492 100644 --- a/engine/lib/plugins.php +++ b/engine/lib/plugins.php @@ -16,7 +16,9 @@ /**
* For now, loads plugins directly
*
- * @todo Add proper plugin handler that launches plugins in an admin-defined order and activates them on admin request
+ * @todo Add proper plugin handler that launches plugins in an admin-defined order and activates them on admin request + * @package Elgg + * @subpackage Core
*/
function load_plugins() {
@@ -43,8 +45,12 @@ }
/**
- * @class PluginException
- * A plugin Exception, thrown when an Exception occurs relating to the plugin mechanism. Subclass for specific plugin Exceptions.
+ * PluginException + *
+ * A plugin Exception, thrown when an Exception occurs relating to the plugin mechanism. Subclass for specific plugin Exceptions. + * + * @package Elgg + * @subpackage Exceptions
*/
class PluginException extends Exception {}
|