AndroidListcast.php 272 B

1234567891011
  1. <?php
  2. require_once(APP_ROOT_PATH. 'system/umeng/notification/AndroidNotification.php');
  3. class AndroidListcast extends AndroidNotification {
  4. function __construct() {
  5. parent::__construct();
  6. $this->data["type"] = "listcast";
  7. $this->data["device_tokens"] = NULL;
  8. }
  9. }