1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 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(); } }