1234567891011121314151617181920 |
- <?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');
- class PhoneappAccount extends WeAccount {
- protected $tablename = 'account_phoneapp';
- protected $menuFrame = 'wxapp';
- protected $type = ACCOUNT_TYPE_PHONEAPP_NORMAL;
- protected $typeSign = PHONEAPP_TYPE_SIGN;
- protected $typeName = 'APP';
- protected $typeTempalte = '-phoneapp';
- protected $supportVersion = STATUS_ON;
- protected function getAccountInfo($uniacid) {
- return table('account_phoneapp')->getAccount($uniacid);
- }
- }
|