__init.php 711 B

12345678910111213141516171819202122232425
  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 (in_array($action, array('app', 'setting', 'site', 'fans'))) {
  8. $account_api = WeAccount::createByUniacid();
  9. if (is_error($account_api)) {
  10. message($account_api['message'], url('account/display'));
  11. }
  12. $check_manange = $account_api->checkIntoManage();
  13. if (is_error($check_manange)) {
  14. itoast('', $account_api->displayUrl);
  15. } else {
  16. $account_type = $account_api->menuFrame;
  17. define('FRAME', $account_type);
  18. }
  19. }
  20. if (in_array($action, array('account'))) {
  21. define('FRAME', 'system');
  22. }