__init.php 685 B

1234567891011121314151617181920212223242526
  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. if ($action != 'entry') {
  8. $account_api = WeAccount::createByUniacid();
  9. if (is_error($account_api)) {
  10. itoast('', url('account/display'));
  11. }
  12. $check_manange = $account_api->checkIntoManage();
  13. if (is_error($check_manange)) {
  14. itoast('', $account_api->displayUrl);
  15. }
  16. $account_type = $account_api->menuFrame;
  17. if (!($action == 'multi' && $do == 'post')) {
  18. define('FRAME', $account_type);
  19. } else {
  20. define('FRAME', '');
  21. }
  22. } else {
  23. define('FRAME', 'account');
  24. }