diff options
author | zotlabs <mike@macgirvin.com> | 2016-10-14 12:55:01 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-14 12:55:01 +1100 |
commit | b9eb74a705823ddc0fafe81e460442b525d0e7ed (patch) | |
tree | 17fab919a8526adf05c0658e1314b195b980a134 /Zotlabs/Module/Post.php | |
parent | daaefed61bc6a38a102ce2c357278158535a2b27 (diff) | |
parent | 7b41839ea8f2aad020444c42f2cba89040ca28b8 (diff) | |
download | volse-hubzilla-b9eb74a705823ddc0fafe81e460442b525d0e7ed.tar.gz volse-hubzilla-b9eb74a705823ddc0fafe81e460442b525d0e7ed.tar.bz2 volse-hubzilla-b9eb74a705823ddc0fafe81e460442b525d0e7ed.zip |
Merge pull request #547 from dawnbreak/docu
[TASK] Update Doxyfile and fix Doxygen errors.
Diffstat (limited to 'Zotlabs/Module/Post.php')
-rw-r--r-- | Zotlabs/Module/Post.php | 30 |
1 files changed, 14 insertions, 16 deletions
diff --git a/Zotlabs/Module/Post.php b/Zotlabs/Module/Post.php index af231ab50..c78484a45 100644 --- a/Zotlabs/Module/Post.php +++ b/Zotlabs/Module/Post.php @@ -1,36 +1,34 @@ <?php -namespace Zotlabs\Module; - /** - * @file mod/post.php + * @file Zotlabs/Module/Post.php * * @brief Zot endpoint. * */ -require_once('include/zot.php'); +namespace Zotlabs\Module; +require_once('include/zot.php'); +/** + * @brief Post module. + * + */ class Post extends \Zotlabs\Web\Controller { function init() { - - if (array_key_exists('auth', $_REQUEST)) { + if(array_key_exists('auth', $_REQUEST)) { $x = new \Zotlabs\Zot\Auth($_REQUEST); + exit; } - } - - - function post() { - - $z = new \Zotlabs\Zot\Receiver($_REQUEST['data'],get_config('system','prvkey'), new \Zotlabs\Zot\ZotHandler()); - + + function post() { + $z = new \Zotlabs\Zot\Receiver($_REQUEST['data'], get_config('system', 'prvkey'), new \Zotlabs\Zot\ZotHandler()); + // notreached; - exit; - } - + } |