DefaultController.php 911 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. /**
  3. * Class DefaultController
  4. * @author Blackbinbin
  5. */
  6. class DefaultController extends BaseController {
  7. public function __construct() {
  8. parent::__construct(true);
  9. }
  10. /**
  11. * 判断ip,输出首页
  12. */
  13. public function actionIndex() {
  14. // if (ENV != ENV_DEV) {
  15. // header('Location: https://dice.eosget.io/#/box');
  16. // Response::exitMsg('');
  17. // } else {
  18. // // 清除无效的cookie
  19. // Account::checkToken();
  20. //
  21. // if (ENV != ENV_DEV) {
  22. // $GLOBALS['eosProtocol'] = "https";
  23. // $GLOBALS['eosHost'] = "api.eosbeijing.one";
  24. // $GLOBALS['eosPort'] = 443;
  25. // }
  26. $this->tpl->display('index');
  27. // }
  28. }
  29. /**
  30. * 判断ip,输出首页
  31. */
  32. public function actionMini() {
  33. $this->tpl->display('mini');
  34. }
  35. }