Esempio n. 1
0
 /**
  * Returns the list of applications that belong to this user
  *
  * @param int $userId
  * @return array
  */
 public static function getApplicationListByUserId($userId)
 {
     $apps = Api_Dao_App::getApplicationListByUid($userId);
     return self::convertCollectionAsListToArray($apps, true);
 }