__init.php 799 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * [WeEngine System] Copyright (c) 2014 WE7.CC
  4. * WeEngine is NOT a free software, it under the license terms, visited http://www.we7.cc/ for more details.
  5. */
  6. defined('IN_IA') or exit('Access Denied');
  7. $account_api = WeAccount::create();
  8. if (!in_array($action, array('display', 'post', 'manage'))) {
  9. if (is_error($account_api)) {
  10. itoast('', url('wxapp/display'));
  11. }
  12. $check_manange = $account_api->checkIntoManage();
  13. if (is_error($check_manange)) {
  14. $account_display_url = $account_api->accountDisplayUrl();
  15. itoast('', $account_display_url);
  16. }
  17. }
  18. if (($action == 'version' && $do == 'home') || in_array($action, array('payment', 'refund', 'module-link-uniacid', 'entrance-link', 'front-download'))) {
  19. $account_type = $account_api->menuFrame;
  20. define('FRAME', $account_type);
  21. }