Exemplo n.º 1
0
 /**
  * Retrieves a DOMElement which corresponds to this element and all
  * child properties.  This is used to build an entry back into a DOM
  * and eventually XML text for application storage/persistence.
  *
  * @param DOMDocument $doc The DOMDocument used to construct DOMElements
  * @return DOMElement The DOMElement representing this element and all
  *          child properties.
  */
 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc, $majorVersion, $minorVersion);
     if ($this->_pos !== null) {
         $element->appendChild($this->_pos->getDOM($element->ownerDocument));
     }
     return $element;
 }
Exemplo n.º 2
0
 /**
  * Retrieves a DOMElement which corresponds to this element and all
  * child properties.  This is used to build an entry back into a DOM
  * and eventually XML text for sending to the server upon updates, or
  * for application storage/persistence.
  *
  * @param DOMDocument $doc The DOMDocument used to construct DOMElements
  * @return DOMElement The DOMElement representing this element and all
  * child properties.
  */
 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc, $majorVersion, $minorVersion);
     if ($this->_value !== null) {
         $element->setAttribute('value', $this->_value);
     }
     return $element;
 }
Exemplo n.º 3
0
 /**
  * Retrieves a DOMElement which corresponds to this element and all
  * child properties.  This is used to build an entry back into a DOM
  * and eventually XML text for sending to the server upon updates, or
  * for application storage/persistence.
  *
  * @param DOMDocument $doc The DOMDocument used to construct DOMElements
  * @return DOMElement The DOMElement representing this element and all
  * child properties.
  */
 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc, $majorVersion, $minorVersion);
     if ($this->_familyName !== null) {
         $element->setAttribute('familyName', $this->_familyName);
     }
     if ($this->_givenName !== null) {
         $element->setAttribute('givenName', $this->_givenName);
     }
     return $element;
 }
Exemplo n.º 4
0
 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc, $majorVersion, $minorVersion);
     if ($this->_rel !== null) {
         $element->setAttribute('rel', $this->_rel);
     }
     if ($this->_feedLink !== null) {
         $element->appendChild($this->_feedLink->getDOM($element->ownerDocument));
     }
     return $element;
 }
Exemplo n.º 5
0
 /**
  * Retrieves a DOMElement which corresponds to this element and all
  * child properties.  This is used to build an entry back into a DOM
  * and eventually XML text for sending to the server upon updates, or
  * for application storage/persistence.
  *
  * @param DOMDocument $doc The DOMDocument used to construct DOMElements
  * @return DOMElement The DOMElement representing this element and all
  * child properties.
  */
 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc, $majorVersion, $minorVersion);
     if ($this->_relationship !== null) {
         $element->setAttribute('relationship', $this->_relationship);
     }
     if ($this->_type !== null) {
         $element->setAttribute('type', $this->_type);
     }
     return $element;
 }
Exemplo n.º 6
0
 /**
  * Retrieves a DOMElement which corresponds to this element and all
  * child properties.  This is used to build an entry back into a DOM
  * and eventually XML text for sending to the server upon updates, or
  * for application storage/persistence.
  *
  * @param DOMDocument $doc The DOMDocument used to construct DOMElements
  * @return DOMElement The DOMElement representing this element and all
  *         child properties.
  */
 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc, $majorVersion, $minorVersion);
     if ($this->_scheme !== null) {
         $element->setAttribute('scheme', $this->_scheme);
     }
     if ($this->_country != null) {
         $element->setAttribute('country', $this->_country);
     }
     return $element;
 }
Exemplo n.º 7
0
 /**
  * Retrieves DOMElement which corresponds to this element and all
  * child properties. This is used to build this object back into a DOM
  * and eventually XML text for sending to the server upon updates, or
  * for application storage/persistance.
  *
  * @param DOMDocument $doc The DOMDocument used to construct DOMElements
  * @return DOMElement The DOMElement representing this element and all
  * child properties.
  */
 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc);
     if ($this->_lang !== null) {
         $element->setAttribute('lang', $this->_lang);
     }
     if ($this->_type !== null) {
         $element->setAttribute('type', $this->_type);
     }
     return $element;
 }
Exemplo n.º 8
0
 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc, $majorVersion, $minorVersion);
     $element->setAttribute('row', $this->_row);
     $element->setAttribute('col', $this->_col);
     if ($this->_inputValue) {
         $element->setAttribute('inputValue', $this->_inputValue);
     }
     if ($this->_numericValue) {
         $element->setAttribute('numericValue', $this->_numericValue);
     }
     return $element;
 }
Exemplo n.º 9
0
 /**
  * Retrieves a DOMElement which corresponds to this element and all
  * child properties.  This is used to build an entry back into a DOM
  * and eventually XML text for sending to the server upon updates, or
  * for application storage/persistence.
  *
  * @param DOMDocument $doc The DOMDocument used to construct DOMElements
  * @return DOMElement The DOMElement representing this element and all
  * child properties.
  */
 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc, $majorVersion, $minorVersion);
     if ($this->_name !== null) {
         $element->setAttribute('name', $this->_name);
     }
     if ($this->_reasonCode !== null) {
         $element->setAttribute('reasonCode', $this->_reasonCode);
     }
     if ($this->_helpUrl !== null) {
         $element->setAttribute('helpUrl', $this->_helpUrl);
     }
     return $element;
 }
Exemplo n.º 10
0
 /**
  * Retrieves a DOMElement which corresponds to this element and all
  * child properties.  This is used to build an entry back into a DOM
  * and eventually XML text for sending to the server upon updates, or
  * for application storage/persistence.
  *
  * @param DOMDocument $doc The DOMDocument used to construct DOMElements
  * @return DOMElement The DOMElement representing this element and all
  * child properties.
  */
 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc, $majorVersion, $minorVersion);
     if ($this->_url !== null) {
         $element->setAttribute('url', $this->_url);
     }
     if ($this->_width !== null) {
         $element->setAttribute('width', $this->_width);
     }
     if ($this->_height !== null) {
         $element->setAttribute('height', $this->_height);
     }
     return $element;
 }
Exemplo n.º 11
0
 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc, $majorVersion, $minorVersion);
     if ($this->_id !== null) {
         $element->setAttribute('id', $this->_id);
     }
     if ($this->_href !== null) {
         $element->setAttribute('href', $this->_href);
     }
     if ($this->_when !== null) {
         $element->appendChild($this->_when->getDOM($element->ownerDocument));
     }
     return $element;
 }
Exemplo n.º 12
0
 /**
  * Retrieves a DOMElement which corresponds to this element and all
  * child properties.  This is used to build an entry back into a DOM
  * and eventually XML text for sending to the server upon updates, or
  * for application storage/persistence.
  *
  * @param DOMDocument $doc The DOMDocument used to construct DOMElements
  * @return DOMElement The DOMElement representing this element and all
  * child properties.
  */
 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc, $majorVersion, $minorVersion);
     if ($this->_specialized !== null) {
         $element->setAttribute('specialized', $this->_specialized);
     }
     if ($this->_entryLink !== null) {
         $element->appendChild($this->_entryLink->getDOM($element->ownerDocument));
     }
     if ($this->_originalEvent !== null) {
         $element->appendChild($this->_originalEvent->getDOM($element->ownerDocument));
     }
     return $element;
 }
Exemplo n.º 13
0
 /**
  * Retrieves a DOMElement which corresponds to this element and all
  * child properties.  This is used to build an entry back into a DOM
  * and eventually XML text for sending to the server upon updates, or
  * for application storage/persistence.
  *
  * @param DOMDocument $doc The DOMDocument used to construct DOMElements
  * @return DOMElement The DOMElement representing this element and all
  * child properties.
  */
 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc, $majorVersion, $minorVersion);
     if ($this->_role !== null) {
         $element->setAttribute('role', $this->_role);
     }
     if ($this->_scheme !== null) {
         $element->setAttribute('scheme', $this->_scheme);
     }
     if ($this->_yttype !== null) {
         $element->setAttributeNS('http://gdata.youtube.com/schemas/2007', 'yt:type', $this->_yttype);
     }
     return $element;
 }
Exemplo n.º 14
0
 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc, $majorVersion, $minorVersion);
     if ($this->_href !== null) {
         $element->setAttribute('href', $this->_href);
     }
     if ($this->_readOnly !== null) {
         $element->setAttribute('readOnly', $this->_readOnly ? "true" : "false");
     }
     if ($this->_rel !== null) {
         $element->setAttribute('rel', $this->_rel);
     }
     if ($this->_entry !== null) {
         $element->appendChild($this->_entry->getDOM($element->ownerDocument));
     }
     return $element;
 }
Exemplo n.º 15
0
 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc, $majorVersion, $minorVersion);
     if ($this->_startTime !== null) {
         $element->setAttribute('startTime', $this->_startTime);
     }
     if ($this->_endTime !== null) {
         $element->setAttribute('endTime', $this->_endTime);
     }
     if ($this->_valueString !== null) {
         $element->setAttribute('valueString', $this->_valueString);
     }
     if ($this->_reminders !== null) {
         foreach ($this->_reminders as $reminder) {
             $element->appendChild($reminder->getDOM($element->ownerDocument));
         }
     }
     return $element;
 }
Exemplo n.º 16
0
 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc, $majorVersion, $minorVersion);
     if ($this->_countHint !== null) {
         $element->setAttribute('countHint', $this->_countHint);
     }
     if ($this->_href !== null) {
         $element->setAttribute('href', $this->_href);
     }
     if ($this->_readOnly !== null) {
         $element->setAttribute('readOnly', $this->_readOnly);
     }
     if ($this->_rel !== null) {
         $element->setAttribute('rel', $this->_rel);
     }
     if ($this->_feed !== null) {
         $element->appendChild($this->_feed->getDOM($element->ownerDocument));
     }
     return $element;
 }
Exemplo n.º 17
0
 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc, $majorVersion, $minorVersion);
     if ($this->_absoluteTime !== null) {
         $element->setAttribute('absoluteTime', $this->_absoluteTime);
     }
     if ($this->_method !== null) {
         $element->setAttribute('method', $this->_method);
     }
     if ($this->_days !== null) {
         $element->setAttribute('days', $this->_days);
     }
     if ($this->_hours !== null) {
         $element->setAttribute('hours', $this->_hours);
     }
     if ($this->_minutes !== null) {
         $element->setAttribute('minutes', $this->_minutes);
     }
     return $element;
 }
Exemplo n.º 18
0
 /**
  * Retrieves a DOMElement which corresponds to this element and all
  * child properties.  This is used to build an entry back into a DOM
  * and eventually XML text for sending to the server upon updates, or
  * for application storage/persistence.
  *
  * @param DOMDocument $doc The DOMDocument used to construct DOMElements
  * @return DOMElement The DOMElement representing this element and all
  *          child properties.
  */
 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc, $majorVersion, $minorVersion);
     if ($this->_min !== null) {
         $element->setAttribute('min', $this->_min);
     }
     if ($this->_max !== null) {
         $element->setAttribute('max', $this->_max);
     }
     if ($this->_numRaters !== null) {
         $element->setAttribute('numRaters', $this->_numRaters);
     }
     if ($this->_average !== null) {
         $element->setAttribute('average', $this->_average);
     }
     if ($this->_value !== null) {
         $element->setAttribute('value', $this->_value);
     }
     return $element;
 }
Exemplo n.º 19
0
 /**
  * Retrieves a DOMElement which corresponds to this element and all
  * child properties.  This is used to build an entry back into a DOM
  * and eventually XML text for sending to the server upon updates, or
  * for application storage/persistence.
  *
  * @param DOMDocument $doc The DOMDocument used to construct DOMElements
  * @return DOMElement The DOMElement representing this element and all
  * child properties.
  */
 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc, $majorVersion, $minorVersion);
     if ($this->_email !== null) {
         $element->setAttribute('email', $this->_email);
     }
     if ($this->_rel !== null) {
         $element->setAttribute('rel', $this->_rel);
     }
     if ($this->_valueString !== null) {
         $element->setAttribute('valueString', $this->_valueString);
     }
     if ($this->_attendeeStatus !== null) {
         $element->appendChild($this->_attendeeStatus->getDOM($element->ownerDocument));
     }
     if ($this->_attendeeType !== null) {
         $element->appendChild($this->_attendeeType->getDOM($element->ownerDocument));
     }
     if ($this->_entryLink !== null) {
         $element->appendChild($this->_entryLink->getDOM($element->ownerDocument));
     }
     return $element;
 }
Exemplo n.º 20
0
 /**
  * Retrieves a DOMElement which corresponds to this element and all
  * child properties.  This is used to build an entry back into a DOM
  * and eventually XML text for sending to the server upon updates, or
  * for application storage/persistence.
  *
  * @param DOMDocument $doc The DOMDocument used to construct DOMElements
  * @return DOMElement The DOMElement representing this element and all
  * child properties.
  */
 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc, $majorVersion, $minorVersion);
     if ($this->_url !== null) {
         $element->setAttribute('url', $this->_url);
     }
     if ($this->_fileSize !== null) {
         $element->setAttribute('fileSize', $this->_fileSize);
     }
     if ($this->_type !== null) {
         $element->setAttribute('type', $this->_type);
     }
     if ($this->_medium !== null) {
         $element->setAttribute('medium', $this->_medium);
     }
     if ($this->_isDefault !== null) {
         $element->setAttribute('isDefault', $this->_isDefault);
     }
     if ($this->_expression !== null) {
         $element->setAttribute('expression', $this->_expression);
     }
     if ($this->_bitrate !== null) {
         $element->setAttribute('bitrate', $this->_bitrate);
     }
     if ($this->_framerate !== null) {
         $element->setAttribute('framerate', $this->_framerate);
     }
     if ($this->_samplingrate !== null) {
         $element->setAttribute('samplingrate', $this->_samplingrate);
     }
     if ($this->_channels !== null) {
         $element->setAttribute('channels', $this->_channels);
     }
     if ($this->_duration !== null) {
         $element->setAttribute('duration', $this->_duration);
     }
     if ($this->_height !== null) {
         $element->setAttribute('height', $this->_height);
     }
     if ($this->_width !== null) {
         $element->setAttribute('width', $this->_width);
     }
     if ($this->_lang !== null) {
         $element->setAttribute('lang', $this->_lang);
     }
     return $element;
 }
Exemplo n.º 21
0
 /**
  * Retrieves a DOMElement which corresponds to this element and all
  * child properties.  This is used to build an entry back into a DOM
  * and eventually XML text for sending to the server upon updates, or
  * for application storage/persistence.
  *
  * @param DOMDocument $doc The DOMDocument used to construct DOMElements
  * @return DOMElement The DOMElement representing this element and all
  * child properties.
  */
 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc, $majorVersion, $minorVersion);
     if ($this->_videoWatchCount !== null) {
         $element->setAttribute('watchCount', $this->_videoWatchCount);
     }
     if ($this->_viewCount !== null) {
         $element->setAttribute('viewCount', $this->_viewCount);
     }
     if ($this->_subscriberCount !== null) {
         $element->setAttribute('subscriberCount', $this->_subscriberCount);
     }
     if ($this->_lastWebAccess !== null) {
         $element->setAttribute('lastWebAccess', $this->_lastWebAccess);
     }
     if ($this->_favoriteCount !== null) {
         $element->setAttribute('favoriteCount', $this->_favoriteCount);
     }
     return $element;
 }
Exemplo n.º 22
0
 /**
  * Retrieves a DOMElement which corresponds to this element and all
  * child properties.  This is used to build an entry back into a DOM
  * and eventually XML text for sending to the server upon updates, or
  * for application storage/persistence.
  *
  * @param DOMDocument $doc The DOMDocument used to construct DOMElements
  * @return DOMElement The DOMElement representing this element and all
  * child properties.
  */
 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc, $majorVersion, $minorVersion);
     if ($this->_username !== null) {
         $element->setAttribute('userName', $this->_username);
     }
     if ($this->_password !== null) {
         $element->setAttribute('password', $this->_password);
     }
     if ($this->_hashFunctionName !== null) {
         $element->setAttribute('hashFunctionName', $this->_hashFunctionName);
     }
     if ($this->_admin !== null) {
         $element->setAttribute('admin', $this->_admin ? "true" : "false");
     }
     if ($this->_agreedToTerms !== null) {
         $element->setAttribute('agreedToTerms', $this->_agreedToTerms ? "true" : "false");
     }
     if ($this->_suspended !== null) {
         $element->setAttribute('suspended', $this->_suspended ? "true" : "false");
     }
     if ($this->_changePasswordAtNextLogin !== null) {
         $element->setAttribute('changePasswordAtNextLogin', $this->_changePasswordAtNextLogin ? "true" : "false");
     }
     return $element;
 }
Exemplo n.º 23
0
 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc, $majorVersion, $minorVersion);
     return $element;
 }
Exemplo n.º 24
0
 /**
  * Retrieves a DOMElement which corresponds to this element and all
  * child properties.  This is used to build an entry back into a DOM
  * and eventually XML text for sending to the server upon updates, or
  * for application storage/persistence.
  *
  * @param DOMDocument $doc The DOMDocument used to construct DOMElements
  * @return DOMElement The DOMElement representing this element and all
  * child properties.
  */
 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc, $majorVersion, $minorVersion);
     foreach ($this->_content as $content) {
         $element->appendChild($content->getDOM($element->ownerDocument));
     }
     foreach ($this->_category as $category) {
         $element->appendChild($category->getDOM($element->ownerDocument));
     }
     foreach ($this->_credit as $credit) {
         $element->appendChild($credit->getDOM($element->ownerDocument));
     }
     foreach ($this->_player as $player) {
         $element->appendChild($player->getDOM($element->ownerDocument));
     }
     foreach ($this->_rating as $rating) {
         $element->appendChild($rating->getDOM($element->ownerDocument));
     }
     foreach ($this->_restriction as $restriction) {
         $element->appendChild($restriction->getDOM($element->ownerDocument));
     }
     foreach ($this->_mediaText as $text) {
         $element->appendChild($text->getDOM($element->ownerDocument));
     }
     foreach ($this->_thumbnail as $thumbnail) {
         $element->appendChild($thumbnail->getDOM($element->ownerDocument));
     }
     if ($this->_copyright != null) {
         $element->appendChild($this->_copyright->getDOM($element->ownerDocument));
     }
     if ($this->_description != null) {
         $element->appendChild($this->_description->getDOM($element->ownerDocument));
     }
     foreach ($this->_hash as $hash) {
         $element->appendChild($hash->getDOM($element->ownerDocument));
     }
     if ($this->_keywords != null) {
         $element->appendChild($this->_keywords->getDOM($element->ownerDocument));
     }
     if ($this->_title != null) {
         $element->appendChild($this->_title->getDOM($element->ownerDocument));
     }
     return $element;
 }
Exemplo n.º 25
0
 /**
  * Retrieves a DOMElement which corresponds to this element and all
  * child properties.  This is used to build an entry back into a DOM
  * and eventually XML text for application storage/persistence.
  *
  * @param DOMDocument $doc The DOMDocument used to construct DOMElements
  * @return DOMElement The DOMElement representing this element and all
  *          child properties.
  */
 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc, $majorVersion, $minorVersion);
     if ($this->_distance !== null) {
         $element->appendChild($this->_distance->getDOM($element->ownerDocument));
     }
     if ($this->_exposure !== null) {
         $element->appendChild($this->_exposure->getDOM($element->ownerDocument));
     }
     if ($this->_flash !== null) {
         $element->appendChild($this->_flash->getDOM($element->ownerDocument));
     }
     if ($this->_focalLength !== null) {
         $element->appendChild($this->_focalLength->getDOM($element->ownerDocument));
     }
     if ($this->_fStop !== null) {
         $element->appendChild($this->_fStop->getDOM($element->ownerDocument));
     }
     if ($this->_imageUniqueId !== null) {
         $element->appendChild($this->_imageUniqueId->getDOM($element->ownerDocument));
     }
     if ($this->_iso !== null) {
         $element->appendChild($this->_iso->getDOM($element->ownerDocument));
     }
     if ($this->_make !== null) {
         $element->appendChild($this->_make->getDOM($element->ownerDocument));
     }
     if ($this->_model !== null) {
         $element->appendChild($this->_model->getDOM($element->ownerDocument));
     }
     if ($this->_time !== null) {
         $element->appendChild($this->_time->getDOM($element->ownerDocument));
     }
     return $element;
 }