本文整理汇总了PHP中Kaltura_Client_ParseUtils::unmarshalArray方法的典型用法代码示例。如果您正苦于以下问题:PHP Kaltura_Client_ParseUtils::unmarshalArray方法的具体用法?PHP Kaltura_Client_ParseUtils::unmarshalArray怎么用?PHP Kaltura_Client_ParseUtils::unmarshalArray使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Kaltura_Client_ParseUtils
的用法示例。
在下文中一共展示了Kaltura_Client_ParseUtils::unmarshalArray方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct(SimpleXMLElement $xml = null)
{
parent::__construct($xml);
if (is_null($xml)) {
return;
}
$this->format = (string) $xml->format;
$this->subject = (string) $xml->subject;
$this->body = (string) $xml->body;
$this->fromEmail = (string) $xml->fromEmail;
$this->fromName = (string) $xml->fromName;
if (!empty($xml->to)) {
$this->to = Kaltura_Client_ParseUtils::unmarshalObject($xml->to, "KalturaEmailNotificationRecipientProvider");
}
if (!empty($xml->cc)) {
$this->cc = Kaltura_Client_ParseUtils::unmarshalObject($xml->cc, "KalturaEmailNotificationRecipientProvider");
}
if (!empty($xml->bcc)) {
$this->bcc = Kaltura_Client_ParseUtils::unmarshalObject($xml->bcc, "KalturaEmailNotificationRecipientProvider");
}
if (!empty($xml->replyTo)) {
$this->replyTo = Kaltura_Client_ParseUtils::unmarshalObject($xml->replyTo, "KalturaEmailNotificationRecipientProvider");
}
if (count($xml->priority)) {
$this->priority = (int) $xml->priority;
}
$this->confirmReadingTo = (string) $xml->confirmReadingTo;
$this->hostname = (string) $xml->hostname;
$this->messageID = (string) $xml->messageID;
if (empty($xml->customHeaders)) {
$this->customHeaders = array();
} else {
$this->customHeaders = Kaltura_Client_ParseUtils::unmarshalArray($xml->customHeaders, "KalturaKeyValue");
}
}
示例2: __construct
public function __construct(SimpleXMLElement $xml = null)
{
parent::__construct($xml);
if (is_null($xml)) {
return;
}
if (count($xml->id)) {
$this->id = (int) $xml->id;
}
if (count($xml->partnerId)) {
$this->partnerId = (int) $xml->partnerId;
}
$this->name = (string) $xml->name;
$this->systemName = (string) $xml->systemName;
$this->description = (string) $xml->description;
if (count($xml->createdAt)) {
$this->createdAt = (int) $xml->createdAt;
}
if (count($xml->updatedAt)) {
$this->updatedAt = (int) $xml->updatedAt;
}
if (count($xml->isDefault)) {
$this->isDefault = (int) $xml->isDefault;
}
if (empty($xml->rules)) {
$this->rules = array();
} else {
$this->rules = Kaltura_Client_ParseUtils::unmarshalArray($xml->rules, "KalturaRule");
}
}
示例3: __construct
public function __construct(SimpleXMLElement $xml = null)
{
parent::__construct($xml);
if (is_null($xml)) {
return;
}
$this->message = (string) $xml->message;
if (empty($xml->actions)) {
$this->actions = array();
} else {
$this->actions = Kaltura_Client_ParseUtils::unmarshalArray($xml->actions, "KalturaRuleAction");
}
if (empty($xml->conditions)) {
$this->conditions = array();
} else {
$this->conditions = Kaltura_Client_ParseUtils::unmarshalArray($xml->conditions, "KalturaCondition");
}
if (empty($xml->contexts)) {
$this->contexts = array();
} else {
$this->contexts = Kaltura_Client_ParseUtils::unmarshalArray($xml->contexts, "KalturaContextTypeHolder");
}
if (!empty($xml->stopProcessing)) {
$this->stopProcessing = true;
}
}
示例4: __construct
public function __construct(SimpleXMLElement $xml = null)
{
parent::__construct($xml);
if (is_null($xml)) {
return;
}
$this->playlistContent = (string) $xml->playlistContent;
if (empty($xml->filters)) {
$this->filters = array();
} else {
$this->filters = Kaltura_Client_ParseUtils::unmarshalArray($xml->filters, "KalturaMediaEntryFilterForPlaylist");
}
if (count($xml->totalResults)) {
$this->totalResults = (int) $xml->totalResults;
}
if (count($xml->playlistType)) {
$this->playlistType = (int) $xml->playlistType;
}
if (count($xml->plays)) {
$this->plays = (int) $xml->plays;
}
if (count($xml->views)) {
$this->views = (int) $xml->views;
}
if (count($xml->duration)) {
$this->duration = (int) $xml->duration;
}
$this->executeUrl = (string) $xml->executeUrl;
}
示例5: __construct
public function __construct(SimpleXMLElement $xml = null)
{
parent::__construct($xml);
if (is_null($xml)) {
return;
}
if (count($xml->distributionProfileId)) {
$this->distributionProfileId = (int) $xml->distributionProfileId;
}
if (!empty($xml->distributionProfile)) {
$this->distributionProfile = Kaltura_Client_ParseUtils::unmarshalObject($xml->distributionProfile, "KalturaDistributionProfile");
}
if (count($xml->entryDistributionId)) {
$this->entryDistributionId = (int) $xml->entryDistributionId;
}
if (!empty($xml->entryDistribution)) {
$this->entryDistribution = Kaltura_Client_ParseUtils::unmarshalObject($xml->entryDistribution, "KalturaEntryDistribution");
}
$this->remoteId = (string) $xml->remoteId;
$this->providerType = (string) $xml->providerType;
if (!empty($xml->providerData)) {
$this->providerData = Kaltura_Client_ParseUtils::unmarshalObject($xml->providerData, "KalturaDistributionJobProviderData");
}
$this->results = (string) $xml->results;
$this->sentData = (string) $xml->sentData;
if (empty($xml->mediaFiles)) {
$this->mediaFiles = array();
} else {
$this->mediaFiles = Kaltura_Client_ParseUtils::unmarshalArray($xml->mediaFiles, "KalturaDistributionRemoteMediaFile");
}
}
示例6: __construct
public function __construct(SimpleXMLElement $xml = null)
{
parent::__construct($xml);
if (is_null($xml)) {
return;
}
if (empty($xml->properties)) {
$this->properties = array();
} else {
$this->properties = Kaltura_Client_ParseUtils::unmarshalArray($xml->properties, "KalturaKeyValue");
}
}
示例7: __construct
public function __construct(SimpleXMLElement $xml = null)
{
parent::__construct($xml);
if (is_null($xml)) {
return;
}
if (empty($xml->changedItems)) {
$this->changedItems = array();
} else {
$this->changedItems = Kaltura_Client_ParseUtils::unmarshalArray($xml->changedItems, "KalturaAuditTrailChangeItem");
}
}
示例8: __construct
public function __construct(SimpleXMLElement $xml = null)
{
parent::__construct($xml);
if (is_null($xml)) {
return;
}
if (empty($xml->resources)) {
$this->resources = array();
} else {
$this->resources = Kaltura_Client_ParseUtils::unmarshalArray($xml->resources, "KalturaRemoteStorageResource");
}
}
示例9: __construct
public function __construct(SimpleXMLElement $xml = null)
{
parent::__construct($xml);
if (is_null($xml)) {
return;
}
if (empty($xml->emailRecipients)) {
$this->emailRecipients = array();
} else {
$this->emailRecipients = Kaltura_Client_ParseUtils::unmarshalArray($xml->emailRecipients, "KalturaEmailNotificationRecipient");
}
}
示例10: __construct
public function __construct(SimpleXMLElement $xml = null)
{
parent::__construct($xml);
if (is_null($xml)) {
return;
}
$this->xslt = (string) $xml->xslt;
if (empty($xml->itemXpathsToExtend)) {
$this->itemXpathsToExtend = array();
} else {
$this->itemXpathsToExtend = Kaltura_Client_ParseUtils::unmarshalArray($xml->itemXpathsToExtend, "KalturaExtendingItemMrssParameter");
}
}
示例11: __construct
public function __construct(SimpleXMLElement $xml = null)
{
parent::__construct($xml);
if (is_null($xml)) {
return;
}
$this->validationError = (string) $xml->validationError;
if (empty($xml->assetDistributionConditions)) {
$this->assetDistributionConditions = array();
} else {
$this->assetDistributionConditions = Kaltura_Client_ParseUtils::unmarshalArray($xml->assetDistributionConditions, "KalturaAssetDistributionCondition");
}
}
示例12: __construct
public function __construct(SimpleXMLElement $xml = null)
{
parent::__construct($xml);
if (is_null($xml)) {
return;
}
$this->columns = (string) $xml->columns;
if (empty($xml->results)) {
$this->results = array();
} else {
$this->results = Kaltura_Client_ParseUtils::unmarshalArray($xml->results, "KalturaString");
}
}
示例13: __construct
public function __construct(SimpleXMLElement $xml = null)
{
parent::__construct($xml);
if (is_null($xml)) {
return;
}
if (empty($xml->provisioningParams)) {
$this->provisioningParams = array();
} else {
$this->provisioningParams = Kaltura_Client_ParseUtils::unmarshalArray($xml->provisioningParams, "KalturaKeyValue");
}
$this->userName = (string) $xml->userName;
$this->password = (string) $xml->password;
}
示例14: __construct
public function __construct(SimpleXMLElement $xml = null)
{
parent::__construct($xml);
if (is_null($xml)) {
return;
}
if (!empty($xml->isSiteRestricted)) {
$this->isSiteRestricted = true;
}
if (!empty($xml->isCountryRestricted)) {
$this->isCountryRestricted = true;
}
if (!empty($xml->isSessionRestricted)) {
$this->isSessionRestricted = true;
}
if (!empty($xml->isIpAddressRestricted)) {
$this->isIpAddressRestricted = true;
}
if (!empty($xml->isUserAgentRestricted)) {
$this->isUserAgentRestricted = true;
}
if (count($xml->previewLength)) {
$this->previewLength = (int) $xml->previewLength;
}
if (!empty($xml->isScheduledNow)) {
$this->isScheduledNow = true;
}
if (!empty($xml->isAdmin)) {
$this->isAdmin = true;
}
$this->streamerType = (string) $xml->streamerType;
$this->mediaProtocol = (string) $xml->mediaProtocol;
$this->storageProfilesXML = (string) $xml->storageProfilesXML;
if (empty($xml->accessControlMessages)) {
$this->accessControlMessages = array();
} else {
$this->accessControlMessages = Kaltura_Client_ParseUtils::unmarshalArray($xml->accessControlMessages, "KalturaString");
}
if (empty($xml->accessControlActions)) {
$this->accessControlActions = array();
} else {
$this->accessControlActions = Kaltura_Client_ParseUtils::unmarshalArray($xml->accessControlActions, "KalturaRuleAction");
}
if (empty($xml->flavorAssets)) {
$this->flavorAssets = array();
} else {
$this->flavorAssets = Kaltura_Client_ParseUtils::unmarshalArray($xml->flavorAssets, "KalturaFlavorAsset");
}
}
示例15: __construct
public function __construct(SimpleXMLElement $xml = null)
{
parent::__construct($xml);
if (is_null($xml)) {
return;
}
if (count($xml->id)) {
$this->id = (int) $xml->id;
}
if (count($xml->partnerId)) {
$this->partnerId = (int) $xml->partnerId;
}
$this->name = (string) $xml->name;
$this->systemName = (string) $xml->systemName;
$this->description = (string) $xml->description;
$this->type = (string) $xml->type;
if (count($xml->status)) {
$this->status = (int) $xml->status;
}
if (count($xml->createdAt)) {
$this->createdAt = (int) $xml->createdAt;
}
if (count($xml->updatedAt)) {
$this->updatedAt = (int) $xml->updatedAt;
}
if (!empty($xml->manualDispatchEnabled)) {
$this->manualDispatchEnabled = true;
}
if (!empty($xml->automaticDispatchEnabled)) {
$this->automaticDispatchEnabled = true;
}
$this->eventType = (string) $xml->eventType;
$this->eventObjectType = (string) $xml->eventObjectType;
if (empty($xml->eventConditions)) {
$this->eventConditions = array();
} else {
$this->eventConditions = Kaltura_Client_ParseUtils::unmarshalArray($xml->eventConditions, "KalturaCondition");
}
if (empty($xml->contentParameters)) {
$this->contentParameters = array();
} else {
$this->contentParameters = Kaltura_Client_ParseUtils::unmarshalArray($xml->contentParameters, "KalturaEventNotificationParameter");
}
if (empty($xml->userParameters)) {
$this->userParameters = array();
} else {
$this->userParameters = Kaltura_Client_ParseUtils::unmarshalArray($xml->userParameters, "KalturaEventNotificationParameter");
}
}