DefaultController.php 785 B

123456789101112131415161718192021222324252627282930313233343536
  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. }