/** * 根据 accountId 来查找账号信息 * @param integer $accountId * @return array */ public function getAccountByAccountId($accountId) { if (!$accountId) { return array(); } return Dao::factory('Account')->getAccountByAccountId($accountId); }
/** * 获取所有的可显示的权限 * @return array */ public function getPrivilegesIsDisplay() { return Dao::factory('Privilege')->getPrivilegesIsDisplay(); }
/** * 得到所有的角色 * @return array */ public function getRoles() { return Dao::factory('Role')->getRoles(); }
/** * 分页获取项目 * @param integer $number * @param integer $offset * @return array */ public function getProjectsBylimit($offset, $number) { return Dao::factory('Project')->getProjectsBylimit($offset, $number); }
/** * 得到所有模块 * @return array */ public function getModules() { return Dao::factory('module')->getModules(); }