12345678910111213141516171819202122232425 |
- <?php
- /**
- * [WeEngine System] Copyright (c) 2014 WE7.CC
- * WeEngine is NOT a free software, it under the license terms, visited http://www.we7.cc/ for more details.
- */
- defined('IN_IA') or exit('Access Denied');
- if (in_array($action, array('app', 'setting', 'site', 'fans'))) {
- $account_api = WeAccount::createByUniacid();
- if (is_error($account_api)) {
- message($account_api['message'], url('account/display'));
- }
- $check_manange = $account_api->checkIntoManage();
- if (is_error($check_manange)) {
- itoast('', $account_api->displayUrl);
- } else {
- $account_type = $account_api->menuFrame;
- define('FRAME', $account_type);
- }
- }
- if (in_array($action, array('account'))) {
- define('FRAME', 'system');
- }
|