webapp.account.class.php 620 B

123456789101112131415161718192021
  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. class WebappAccount extends WeAccount {
  8. protected $tablename = 'account_webapp';
  9. protected $menuFrame = 'account';
  10. protected $type = ACCOUNT_TYPE_WEBAPP_NORMAL;
  11. protected $typeSign = WEBAPP_TYPE_SIGN;
  12. protected $typeName = 'PC';
  13. protected $typeTempalte = '-webapp';
  14. protected function getAccountInfo($uniacid) {
  15. $account = table('account_webapp')->getAccount($uniacid);
  16. return $account;
  17. }
  18. }