Ejemplo n.º 1
0
 /**
  * Grab the list of installed modules and send that list to the depot.
  * The depot will then send back a list of modules that need to be updated
  */
 function checkForUpdates()
 {
     $lists = $this->buildInstalledReleases(array('module'), true);
     $updates = array();
     if (!empty($lists)) {
         $updates = PackageManagerComm::checkForUpdates($lists);
     }
     //fi
     return $updates;
 }