refill_gftd.php 258 B

12345678910
  1. <?php
  2. require_once(BASE_HELPER_PATH . '/refill/RefillFactory.php');
  3. $content = $_SERVER['post_content'];
  4. $input = json_decode($content,true);
  5. refill\RefillFactory::instance()->notify('gftd',$input);
  6. $ret = ['state' => "success"];
  7. echo (json_encode($ret));