[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.
WebappAccount |
<?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 WebappAccount extends WeAccount {
protected $tablename = 'account_webapp';
protected $menuFrame = 'account';
protected $type = ACCOUNT_TYPE_WEBAPP_NORMAL;
protected $typeSign = WEBAPP_TYPE_SIGN;
protected $typeName = 'PC';
protected $typeTempalte = '-webapp';
public function checkIntoManage() {
if (empty($this->account) || (!empty($this->account['account']) && $this->account['type'] != ACCOUNT_TYPE_WEBAPP_NORMAL && !defined('IN_MODULE'))) {
return false;
}
return true;
}
protected function getAccountInfo($acid) {
$account = table('account')->getWebappAccount($acid);
return $account;
}
}