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


PHP Extension::getDOM方法代码示例

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


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

示例1: getDOM

 /**
  * 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;
 }
开发者ID:hybridneo,项目名称:zendgdata,代码行数:17,代码来源:GmlPoint.php

示例2: getDOM

 /**
  * 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;
 }
开发者ID:hybridneo,项目名称:zendgdata,代码行数:18,代码来源:ACLRole.php

示例3: getDOM

 /**
  * 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;
 }
开发者ID:hybridneo,项目名称:zendgdata,代码行数:21,代码来源:Name.php

示例4: getDOM

 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;
 }
开发者ID:hybridneo,项目名称:zendgdata,代码行数:11,代码来源:Comments.php

示例5: getDOM

 /**
  * 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;
 }
开发者ID:hybridneo,项目名称:zendgdata,代码行数:21,代码来源:MediaRestriction.php

示例6: getDOM

 /**
  * 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;
 }
开发者ID:hybridneo,项目名称:zendgdata,代码行数:21,代码来源:MediaRating.php

示例7: getDOM

 /**
  * 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;
 }
开发者ID:hybridneo,项目名称:zendgdata,代码行数:21,代码来源:Review.php

示例8: getDOM

 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;
 }
开发者ID:hybridneo,项目名称:zendgdata,代码行数:13,代码来源:Cell.php

示例9: getDOM

 /**
  * 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;
 }
开发者ID:hybridneo,项目名称:zendgdata,代码行数:24,代码来源:State.php

示例10: getDOM

 /**
  * 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;
 }
开发者ID:hybridneo,项目名称:zendgdata,代码行数:24,代码来源:MediaPlayer.php

示例11: getDOM

 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;
 }
开发者ID:hybridneo,项目名称:zendgdata,代码行数:14,代码来源:OriginalEvent.php

示例12: getDOM

 /**
  * 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;
 }
开发者ID:hybridneo,项目名称:zendgdata,代码行数:24,代码来源:RecurrenceException.php

示例13: getDOM

 /**
  * 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;
 }
开发者ID:hybridneo,项目名称:zendgdata,代码行数:24,代码来源:MediaCredit.php

示例14: getDOM

 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;
 }
开发者ID:hybridneo,项目名称:zendgdata,代码行数:17,代码来源:EntryLink.php

示例15: getDOM

 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;
 }
开发者ID:hybridneo,项目名称:zendgdata,代码行数:19,代码来源:When.php


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