当前位置: 首页>>代码示例>>PHP>>正文


PHP BatchJobPeer::retrieveByEntryIdAndType方法代码示例

本文整理汇总了PHP中BatchJobPeer::retrieveByEntryIdAndType方法的典型用法代码示例。如果您正苦于以下问题:PHP BatchJobPeer::retrieveByEntryIdAndType方法的具体用法?PHP BatchJobPeer::retrieveByEntryIdAndType怎么用?PHP BatchJobPeer::retrieveByEntryIdAndType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在BatchJobPeer的用法示例。


在下文中一共展示了BatchJobPeer::retrieveByEntryIdAndType方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getClientNotificationAction

 /**
  * Return the notifications for a specific entry id and type
  * 
  * @action getClientNotification
  * @param string $entryId
  * @param KalturaNotificationType $type
  * @return KalturaClientNotification
  */
 function getClientNotificationAction($entryId, $type)
 {
     // in case of a multirequest, a mediaService.addFromUploadedFile may fail and therefore the resulting entry id will be empty
     // in such a case return immidiately without looking for the notification
     if ($entryId == '') {
         throw new KalturaAPIException(KalturaErrors::NOTIFICATION_FOR_ENTRY_NOT_FOUND, $entryId);
     }
     $notifications = BatchJobPeer::retrieveByEntryIdAndType($entryId, BatchJobType::NOTIFICATION, $type);
     // FIXME: throw error if not found
     if (count($notifications) == 0) {
         throw new KalturaAPIException(KalturaErrors::NOTIFICATION_FOR_ENTRY_NOT_FOUND, $entryId);
     }
     $notification = $notifications[0];
     $partnerId = $this->getPartnerId();
     $nofication_config_str = null;
     list($nofity, $nofication_config_str) = myPartnerUtils::shouldNotify($partnerId);
     if (!$nofity) {
         return new KalturaClientNotification();
     }
     $nofication_config = myNotificationsConfig::getInstance($nofication_config_str);
     $nofity_send_type = $nofication_config->shouldNotify($type);
     if ($nofity_send_type != myNotificationMgr::NOTIFICATION_MGR_SEND_SYNCH && $nofity_send_type != myNotificationMgr::NOTIFICATION_MGR_SEND_BOTH) {
         return new KalturaClientNotification();
     }
     $partner = PartnerPeer::retrieveByPK($partnerId);
     list($url, $signatureKey) = myNotificationMgr::getPartnerNotificationInfo($partner);
     list($params, $rawSignature) = myNotificationMgr::prepareNotificationData($url, $signatureKey, $notification, null);
     $serializedParams = http_build_query($params, "", "&");
     $result = new KalturaClientNotification();
     $result->url = $url;
     $result->data = $serializedParams;
     return $result;
 }
开发者ID:richhl,项目名称:kalturaCE,代码行数:41,代码来源:NotificationService.php

示例2: disableAutoThumbnailCreation

 /**
  * Disable any automatic thumbnail creation by the conversion jobs
  * 
  * @param string $entryId
  */
 public static function disableAutoThumbnailCreation($entryId)
 {
     $convertProfileJobs = BatchJobPeer::retrieveByEntryIdAndType($entryId, BatchJobType::CONVERT_PROFILE);
     foreach ($convertProfileJobs as $convertProfileJob) {
         $convertProfileJobData = $convertProfileJob->getData();
         if ($convertProfileJobData instanceof kConvertProfileJobData && $convertProfileJobData->getCreateThumb()) {
             $convertProfileJobData->setCreateThumb(false);
             $convertProfileJob->setData($convertProfileJobData);
             $convertProfileJob->save();
         }
     }
 }
开发者ID:richhl,项目名称:kalturaCE,代码行数:17,代码来源:myEntryUtils.class.php


注:本文中的BatchJobPeer::retrieveByEntryIdAndType方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。