Example #1
0
 public function getInstallApps()
 {
     if ($this->install_apps === null) {
         $this->install_apps = InstallLog::getInstallApps($this);
     }
     return $this->install_apps;
 }
Example #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);
 }