diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-06-21 10:08:49 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-06-21 10:08:49 +0200 |
commit | ecae0b3d97d759603bb2bf9bc51187a2842964c8 (patch) | |
tree | f91d7d8efdd3c0ba1b7eeb59ac4555d0bff8aafe /include/plugin.php | |
parent | da2c0a22f9763621e44a6614627034c9789d7639 (diff) | |
parent | 63423c8ee1f750d855c75ed67205076d21eda4f1 (diff) | |
download | volse-hubzilla-ecae0b3d97d759603bb2bf9bc51187a2842964c8.tar.gz volse-hubzilla-ecae0b3d97d759603bb2bf9bc51187a2842964c8.tar.bz2 volse-hubzilla-ecae0b3d97d759603bb2bf9bc51187a2842964c8.zip |
Merge branch 'dev' into sabre32
Diffstat (limited to 'include/plugin.php')
-rwxr-xr-x | include/plugin.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/plugin.php b/include/plugin.php index 9b84039a6..c95f8cbf9 100755 --- a/include/plugin.php +++ b/include/plugin.php @@ -167,6 +167,12 @@ function reload_plugins() { } } +function visible_plugin_list() { + $r = q("select * from addon where hidden = 0 order by aname asc"); + return(($r) ? ids_to_array($r,'aname') : array()); +} + + /** * @brief registers a hook. |