예제 #1
0
파일: App.php 프로젝트: jkinner/ringside
 /**
  * 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);
 }