public static function fromDbArray($arr, KalturaDetachedResponseProfile $responseProfile = null)
 {
     $newArr = new KalturaAttachmentAssetArray();
     if ($arr == null) {
         return $newArr;
     }
     foreach ($arr as $obj) {
         $nObj = KalturaAsset::getInstance($obj);
         $nObj->fromObject($obj, $responseProfile);
         $newArr[] = $nObj;
     }
     return $newArr;
 }
예제 #2
0
 /**
  * @action get
  * @param string $attachmentAssetId
  * @return KalturaAttachmentAsset
  * 
  * @throws KalturaAttachmentErrors::ATTACHMENT_ASSET_ID_NOT_FOUND
  */
 public function getAction($attachmentAssetId)
 {
     $attachmentAssetsDb = assetPeer::retrieveById($attachmentAssetId);
     if (!$attachmentAssetsDb || !$attachmentAssetsDb instanceof AttachmentAsset) {
         throw new KalturaAPIException(KalturaAttachmentErrors::ATTACHMENT_ASSET_ID_NOT_FOUND, $attachmentAssetId);
     }
     $attachmentAsset = KalturaAsset::getInstance($attachmentAssetsDb);
     $attachmentAsset->fromObject($attachmentAssetsDb, $this->getResponseProfile());
     return $attachmentAsset;
 }