示例#1
0
文件: User.php 项目: kzfk/emlauncher
 public function getInstallApps()
 {
     if ($this->install_apps === null) {
         $this->install_apps = InstallLog::getInstallApps($this);
     }
     return $this->install_apps;
 }
示例#2
0
 public function executeInstalled()
 {
     $installed_apps = InstallLog::getInstallApps($this->login_user);
     $installed_apps->sortByDesc('app_id');
     $params = array('installed_apps' => $installed_apps);
     return $this->build($params);
 }