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


PHP Zend_Gdata_Entry::getDOM方法代码示例

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


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

示例1: getDOM

 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc, $majorVersion, $minorVersion);
     if ($this->_countHint != null) {
         $element->appendChild($this->_countHint->getDOM($element->ownerDocument));
     }
     if ($this->_playlistTitle != null) {
         $element->appendChild($this->_playlistTitle->getDOM($element->ownerDocument));
     }
     if ($this->_playlistId != null) {
         $element->appendChild($this->_playlistId->getDOM($element->ownerDocument));
     }
     if ($this->_mediaThumbnail != null) {
         $element->appendChild($this->_mediaThumbnail->getDOM($element->ownerDocument));
     }
     if ($this->_username != null) {
         $element->appendChild($this->_username->getDOM($element->ownerDocument));
     }
     if ($this->_queryString != null) {
         $element->appendChild($this->_queryString->getDOM($element->ownerDocument));
     }
     if ($this->_feedLink != null) {
         foreach ($this->_feedLink as $feedLink) {
             $element->appendChild($feedLink->getDOM($element->ownerDocument));
         }
     }
     return $element;
 }
开发者ID:hackingman,项目名称:TubeX,代码行数:28,代码来源:SubscriptionEntry.php

示例2: getDOM

 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc, $majorVersion, $minorVersion);
     if ($this->_accessLevel != null) {
         $element->appendChild($this->_accessLevel->getDOM($element->ownerDocument));
     }
     if ($this->_color != null) {
         $element->appendChild($this->_color->getDOM($element->ownerDocument));
     }
     if ($this->_hidden != null) {
         $element->appendChild($this->_hidden->getDOM($element->ownerDocument));
     }
     if ($this->_selected != null) {
         $element->appendChild($this->_selected->getDOM($element->ownerDocument));
     }
     if ($this->_timezone != null) {
         $element->appendChild($this->_timezone->getDOM($element->ownerDocument));
     }
     if ($this->_where != null) {
         foreach ($this->_where as $where) {
             $element->appendChild($where->getDOM($element->ownerDocument));
         }
     }
     return $element;
 }
开发者ID:thsonvt,项目名称:sugarcrm_dev,代码行数:25,代码来源:ListEntry.php

示例3: getDOM

 public function getDOM($doc = null)
 {
     $element = parent::getDOM($doc);
     if ($this->_where != null) {
         $element->appendChild($this->_where->getDOM($element->ownerDocument));
     }
     return $element;
 }
开发者ID:omusico,项目名称:sugar_work,代码行数:8,代码来源:Entry.php

示例4: 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)
 {
     $element = parent::getDOM($doc);
     if ($this->_gphotoWeight !== null) {
         $element->appendChild($this->_gphotoWeight->getDOM($element->ownerDocument));
     }
     return $element;
 }
开发者ID:omusico,项目名称:sugar_work,代码行数:17,代码来源:TagEntry.php

示例5: getDOM

 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc, $majorVersion, $minorVersion);
     if ($this->_cell != null) {
         $element->appendChild($this->_cell->getDOM($element->ownerDocument));
     }
     return $element;
 }
开发者ID:hirentricore,项目名称:devmagento,代码行数:8,代码来源:CellEntry.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 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->_property as $p) {
         $element->appendChild($p->getDOM($element->ownerDocument));
     }
     return $element;
 }
开发者ID:cljk,项目名称:kimai,代码行数:17,代码来源:GroupEntry.php

示例7: 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->_feedLink != null) {
         foreach ($this->_feedLink as $feedLink) {
             $element->appendChild($feedLink->getDOM($element->ownerDocument));
         }
     }
     return $element;
 }
开发者ID:gauravstomar,项目名称:Pepool,代码行数:20,代码来源:SubscriptionEntry.php

示例8: getDOM

 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc, $majorVersion, $minorVersion);
     if (!empty($this->_custom)) {
         foreach ($this->_custom as $custom) {
             $element->appendChild($custom->getDOM($element->ownerDocument));
         }
     }
     return $element;
 }
开发者ID:netconstructor,项目名称:Centurion,代码行数:10,代码来源:ListEntry.php

示例9: getDOM

 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc, $majorVersion, $minorVersion);
     if ($this->_login !== null) {
         $element->appendChild($this->_login->getDOM($element->ownerDocument));
     }
     if ($this->_nickname !== null) {
         $element->appendChild($this->_nickname->getDOM($element->ownerDocument));
     }
     return $element;
 }
开发者ID:hackingman,项目名称:TubeX,代码行数:11,代码来源:NicknameEntry.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)
 {
     $element = parent::getDOM($doc);
     if ($this->_description != null) {
         $element->appendChild($this->_description->getDOM($element->ownerDocument));
     }
     if ($this->_feedLink != null) {
         foreach ($this->_feedLink as $feedLink) {
             $element->appendChild($feedLink->getDOM($element->ownerDocument));
         }
     }
     return $element;
 }
开发者ID:dalinhuang,项目名称:popo,代码行数:23,代码来源:PlaylistListEntry.php

示例11: 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);
     foreach ($this->_contentAttributes as $contentAttribute) {
         $element->appendChild($contentAttribute->getDOM($element->ownerDocument));
     }
     foreach ($this->_tax as $tax) {
         if ($tax instanceof Varien_Gdata_Gshopping_Extension_Tax) {
             $element->appendChild($tax->getDOM($element->ownerDocument));
         }
     }
     return $element;
 }
开发者ID:relue,项目名称:magento2,代码行数:22,代码来源:Entry.php

示例12: getDOM

 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc, $majorVersion, $minorVersion);
     if ($this->_who != null) {
         foreach ($this->_who as $who) {
             $element->appendChild($who->getDOM($element->ownerDocument));
         }
     }
     if ($this->_when != null) {
         foreach ($this->_when as $when) {
             $element->appendChild($when->getDOM($element->ownerDocument));
         }
     }
     if ($this->_where != null) {
         foreach ($this->_where as $where) {
             $element->appendChild($where->getDOM($element->ownerDocument));
         }
     }
     if ($this->_recurrenceException != null) {
         foreach ($this->_recurrenceException as $recurrenceException) {
             $element->appendChild($recurrenceException->getDOM($element->ownerDocument));
         }
     }
     if ($this->_extendedProperty != null) {
         foreach ($this->_extendedProperty as $extProp) {
             $element->appendChild($extProp->getDOM($element->ownerDocument));
         }
     }
     if ($this->_recurrence != null) {
         $element->appendChild($this->_recurrence->getDOM($element->ownerDocument));
     }
     if ($this->_eventStatus != null) {
         $element->appendChild($this->_eventStatus->getDOM($element->ownerDocument));
     }
     if ($this->_comments != null) {
         $element->appendChild($this->_comments->getDOM($element->ownerDocument));
     }
     if ($this->_transparency != null) {
         $element->appendChild($this->_transparency->getDOM($element->ownerDocument));
     }
     if ($this->_visibility != null) {
         $element->appendChild($this->_visibility->getDOM($element->ownerDocument));
     }
     if ($this->_originalEvent != null) {
         $element->appendChild($this->_originalEvent->getDOM($element->ownerDocument));
     }
     if ($this->_entryLink != null) {
         $element->appendChild($this->_entryLink->getDOM($element->ownerDocument));
     }
     return $element;
 }
开发者ID:hackingman,项目名称:TubeX,代码行数:51,代码来源:EventEntry.php

示例13: getDOM

 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc, $majorVersion, $minorVersion);
     if ($this->_videoId !== null) {
         $element->appendChild($this->_videoId->getDOM($element->ownerDocument));
     }
     if ($this->_username !== null) {
         $element->appendChild($this->_username->getDOM($element->ownerDocument));
     }
     if ($this->_rating !== null) {
         $element->appendChild($this->_rating->getDOM($element->ownerDocument));
     }
     return $element;
 }
开发者ID:hackingman,项目名称:TubeX,代码行数:14,代码来源:ActivityEntry.php

示例14: getDOM

 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc, $majorVersion, $minorVersion);
     if ($this->_login !== null) {
         $element->appendChild($this->_login->getDOM($element->ownerDocument));
     }
     if ($this->_name !== null) {
         $element->appendChild($this->_name->getDOM($element->ownerDocument));
     }
     if ($this->_quota !== null) {
         $element->appendChild($this->_quota->getDOM($element->ownerDocument));
     }
     foreach ($this->_feedLink as $feedLink) {
         $element->appendChild($feedLink->getDOM($element->ownerDocument));
     }
     return $element;
 }
开发者ID:hackingman,项目名称:TubeX,代码行数:17,代码来源:UserEntry.php

示例15: getDOM

 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 {
     $element = parent::getDOM($doc, $majorVersion, $minorVersion);
     if ($this->_addresses != null) {
         foreach ($this->_addresses as $address) {
             $element->appendChild($address->getDOM($element->ownerDocument));
         }
     }
     if ($this->_categories != null) {
         foreach ($this->_categories as $category) {
             $element->appendChild($category->getDOM($element->ownerDocument));
         }
     }
     if ($this->_emails != null) {
         foreach ($this->_emails as $email) {
             $element->appendChild($email->getDOM($element->ownerDocument));
         }
     }
     if ($this->_extendedProperties != null) {
         foreach ($this->_extendedProperties as $extendedProperty) {
             $element->appendChild($extendedProperty->getDOM($element->ownerDocument));
         }
     }
     if ($this->_ims != null) {
         foreach ($this->_ims as $im) {
             $element->appendChild($im->getDOM($element->ownerDocument));
         }
     }
     if ($this->_name != null) {
         $element->appendChild($this->_name->getDOM($element->ownerDocument));
     }
     if ($this->_notes != null) {
         $element->appendChild($this->_notes->getDOM($element->ownerDocument));
     }
     if ($this->_organization != null) {
         $element->appendChild($this->_organization->getDOM($element->ownerDocument));
     }
     if ($this->_phones != null) {
         foreach ($this->_phones as $phone) {
             $element->appendChild($phone->getDOM($element->ownerDocument));
         }
     }
     return $element;
 }
开发者ID:Bergdahls,项目名称:YetiForceCRM,代码行数:44,代码来源:ListEntry.php


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