diff options
author | Matthias Schulte <post@lupo49.de> | 2011-09-11 13:11:30 +0200 |
---|---|---|
committer | Matthias Schulte <post@lupo49.de> | 2011-09-11 13:11:30 +0200 |
commit | 1614eb9180008daaf518e6271b82222219efc008 (patch) | |
tree | bd9b3138f288fbc6786f3b28c7f3d438bf79c36f /inc/pluginutils.php | |
parent | e2b5ad84f88d0bd1fe510fa74673cc7557c6e630 (diff) | |
parent | 29d511bfa507384ae0872f75fb54acb44b1e915e (diff) | |
download | rpg-1614eb9180008daaf518e6271b82222219efc008.tar.gz rpg-1614eb9180008daaf518e6271b82222219efc008.tar.bz2 |
Merge branch 'master' of http://github.com/splitbrain/dokuwiki
Diffstat (limited to 'inc/pluginutils.php')
-rw-r--r-- | inc/pluginutils.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/inc/pluginutils.php b/inc/pluginutils.php index 85bcaee1e..53cfedf82 100644 --- a/inc/pluginutils.php +++ b/inc/pluginutils.php @@ -16,7 +16,7 @@ function plugin_list($type='',$all=false) { global $plugin_controller; return $plugin_controller->getList($type,$all); } -function &plugin_load($type,$name,$new=false,$disabled=false) { +function plugin_load($type,$name,$new=false,$disabled=false) { global $plugin_controller; return $plugin_controller->load($type,$name,$new,$disabled); } @@ -36,3 +36,7 @@ function plugin_directory($plugin) { global $plugin_controller; return $plugin_controller->get_directory($plugin); } +function plugin_getcascade() { + global $plugin_controller; + return $plugin_controller->getCascade(); +} |