diff options
author | git-marijus <mario@mariovavti.com> | 2017-11-04 10:25:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-04 10:25:27 +0100 |
commit | d31df715fb988d5f48a3174646c63542c356fb55 (patch) | |
tree | 8ef7bf1e06a5d223228b370121bda97695af7d0e /Zotlabs/Extend/Hook.php | |
parent | 39c194c5c32e49f461b8b42a3f4e411a3a5cde3c (diff) | |
parent | 26fa091aa2acd1e31db31de4969895372fc4164f (diff) | |
download | volse-hubzilla-d31df715fb988d5f48a3174646c63542c356fb55.tar.gz volse-hubzilla-d31df715fb988d5f48a3174646c63542c356fb55.tar.bz2 volse-hubzilla-d31df715fb988d5f48a3174646c63542c356fb55.zip |
Merge pull request #883 from dawnbreak/docu
:bulb: Improving Doxygen documentation.
Diffstat (limited to 'Zotlabs/Extend/Hook.php')
-rw-r--r-- | Zotlabs/Extend/Hook.php | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/Zotlabs/Extend/Hook.php b/Zotlabs/Extend/Hook.php index c6f9ea850..81260ead6 100644 --- a/Zotlabs/Extend/Hook.php +++ b/Zotlabs/Extend/Hook.php @@ -2,7 +2,12 @@ namespace Zotlabs\Extend; +use App; +/** + * @brief Hook class. + * + */ class Hook { static public function register($hook,$file,$function,$version = 1,$priority = 0) { @@ -64,11 +69,14 @@ class Hook { return $r; } - // unregister all hooks with this file component. - // Useful for addon upgrades where you want to clean out old interfaces. - + /** + * @brief Unregister all hooks with this file component. + * + * Useful for addon upgrades where you want to clean out old interfaces. + * + * @param string $file + */ static public function unregister_by_file($file) { - $r = q("DELETE FROM hook WHERE file = '%s' ", dbesc($file) ); @@ -76,7 +84,6 @@ class Hook { return $r; } - /** * @brief Inserts a hook into a page request. * @@ -98,7 +105,6 @@ class Hook { * @param int $priority * currently not implemented in this function, would require the hook array to be resorted */ - static public function insert($hook, $fn, $version = 0, $priority = 0) { if(is_array($fn)) { $fn = serialize($fn); |