phoneapp.account.class.php 647 B

1234567891011121314151617181920
  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 PhoneappAccount extends WeAccount {
  8. protected $tablename = 'account_phoneapp';
  9. protected $menuFrame = 'wxapp';
  10. protected $type = ACCOUNT_TYPE_PHONEAPP_NORMAL;
  11. protected $typeSign = PHONEAPP_TYPE_SIGN;
  12. protected $typeName = 'APP';
  13. protected $typeTempalte = '-phoneapp';
  14. protected $supportVersion = STATUS_ON;
  15. protected function getAccountInfo($uniacid) {
  16. return table('account_phoneapp')->getAccount($uniacid);
  17. }
  18. }