diff options
Diffstat (limited to 'Zotlabs/Module/Pushcall.php')
-rw-r--r-- | Zotlabs/Module/Pushcall.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Zotlabs/Module/Pushcall.php b/Zotlabs/Module/Pushcall.php new file mode 100644 index 000000000..c0b95159d --- /dev/null +++ b/Zotlabs/Module/Pushcall.php @@ -0,0 +1,19 @@ +<?php +namespace Zotlabs\Module; + + +class Pushcall extends \Zotlabs\Web\Controller { + + function init() { + logger('pushcall: received'); + + $xml = file_get_contents('php://input'); + + logger('received: ' . $xml); + + + + + killme(); + } +} |