protected function getConditionDescription(Kaltura_Client_Type_Condition $condition)
 {
     if ($condition->description) {
         return $this->getDescriptionHtml($condition->description);
     }
     if ($condition instanceof Kaltura_Client_EventNotification_Type_EventFieldCondition) {
         return $this->getDescriptionHtml($this->getValueDescription($condition->field));
     }
     return $condition->getKalturaObjectType();
 }
 public function __construct(SimpleXMLElement $xml = null)
 {
     parent::__construct($xml);
     if (is_null($xml)) {
         return;
     }
 }
 public function __construct(SimpleXMLElement $xml = null)
 {
     parent::__construct($xml);
     if (is_null($xml)) {
         return;
     }
     $this->modifiedColumns = (string) $xml->modifiedColumns;
 }
 public function __construct(SimpleXMLElement $xml = null)
 {
     parent::__construct($xml);
     if (is_null($xml)) {
         return;
     }
     if (!empty($xml->field)) {
         $this->field = Kaltura_Client_ParseUtils::unmarshalObject($xml->field, "KalturaBooleanField");
     }
 }
 public function __construct(SimpleXMLElement $xml = null)
 {
     parent::__construct($xml);
     if (is_null($xml)) {
         return;
     }
     if (!empty($xml->value)) {
         $this->value = Kaltura_Client_ParseUtils::unmarshalObject($xml->value, "KalturaIntegerValue");
     }
     $this->comparison = (string) $xml->comparison;
 }
 public function __construct(SimpleXMLElement $xml = null)
 {
     parent::__construct($xml);
     if (is_null($xml)) {
         return;
     }
     if (!empty($xml->value)) {
         $this->value = Kaltura_Client_Client::unmarshalItem($xml->value);
     }
     $this->comparison = (string) $xml->comparison;
 }
 public function __construct(SimpleXMLElement $xml = null)
 {
     parent::__construct($xml);
     if (is_null($xml)) {
         return;
     }
     if (empty($xml->privileges)) {
         $this->privileges = array();
     } else {
         $this->privileges = Kaltura_Client_Client::unmarshalItem($xml->privileges);
     }
 }
 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");
     }
 }