public function __construct(\SimpleXMLElement $xml = null)
 {
     parent::__construct($xml);
     if (is_null($xml)) {
         return;
     }
     $this->pattern = (string) $xml->pattern;
 }
 public function __construct(\SimpleXMLElement $xml = null)
 {
     parent::__construct($xml);
     if (is_null($xml)) {
         return;
     }
     if (!empty($xml->supportClipping)) {
         $this->supportClipping = true;
     }
 }
 public function __construct(\SimpleXMLElement $xml = null)
 {
     parent::__construct($xml);
     if (is_null($xml)) {
         return;
     }
     if (!empty($xml->useIntelliseek)) {
         $this->useIntelliseek = true;
     }
 }
 public function __construct(\SimpleXMLElement $xml = null)
 {
     parent::__construct($xml);
     if (is_null($xml)) {
         return;
     }
     if (!empty($xml->enforceRtmpe)) {
         $this->enforceRtmpe = true;
     }
     $this->prefix = (string) $xml->prefix;
 }
 public function __construct(\SimpleXMLElement $xml = null)
 {
     parent::__construct($xml);
     if (is_null($xml)) {
         return;
     }
     $this->pattern = (string) $xml->pattern;
     $this->rendererClass = (string) $xml->rendererClass;
     if (count($xml->manifestRedirect)) {
         $this->manifestRedirect = (int) $xml->manifestRedirect;
     }
 }
 public function __construct(\SimpleXMLElement $xml = null)
 {
     parent::__construct($xml);
     if (is_null($xml)) {
         return;
     }
     if (!empty($xml->disableExtraAttributes)) {
         $this->disableExtraAttributes = true;
     }
     if (!empty($xml->forceProxy)) {
         $this->forceProxy = true;
     }
 }