__init.php 580 B

12345678910111213141516171819
  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. $account_api = WeAccount::create();
  7. if (is_error($account_api)) {
  8. message($account_api['message'], url('account/display'));
  9. }
  10. $check_manange = $account_api->checkIntoManage();
  11. if (is_error($check_manange)) {
  12. $account_display_url = $account_api->accountDisplayUrl();
  13. itoast('', $account_display_url);
  14. } else {
  15. $account_type = $account_api->menuFrame;
  16. define('FRAME', $account_type);
  17. }