當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Zend_Gdata_Extension::getDOM方法代碼示例

本文整理匯總了PHP中Zend_Gdata_Extension::getDOM方法的典型用法代碼示例。如果您正苦於以下問題:PHP Zend_Gdata_Extension::getDOM方法的具體用法?PHP Zend_Gdata_Extension::getDOM怎麽用?PHP Zend_Gdata_Extension::getDOM使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Zend_Gdata_Extension的用法示例。


在下文中一共展示了Zend_Gdata_Extension::getDOM方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getDOM

 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;
 }
開發者ID:hackingman,項目名稱:TubeX,代碼行數:35,代碼來源:Tags.php

示例2: getDOM

 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;
 }
開發者ID:hackingman,項目名稱:TubeX,代碼行數:26,代碼來源:Login.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)
 {
     $element = parent::getDOM($doc);
     if ($this->_url != null) {
         $element->setAttribute('url', $this->_url);
     }
     return $element;
 }
開發者ID:omusico,項目名稱:sugar_work,代碼行數:18,代碼來源:MediaCopyright.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 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->_limit !== null) {
         $element->setAttribute('limit', $this->_limit);
     }
     return $element;
 }
開發者ID:omusico,項目名稱:sugar_work,代碼行數:18,代碼來源:Quota.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)
 {
     $element = parent::getDOM($doc);
     if ($this->_seconds !== null) {
         $element->setAttribute('seconds', $this->_seconds);
     }
     return $element;
 }
開發者ID:dalinhuang,項目名稱:popo,代碼行數:18,代碼來源:Duration.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->_value !== null) {
         $element->setAttribute('value', $this->_value ? "true" : "false");
     }
     return $element;
 }
開發者ID:netconstructor,項目名稱:Centurion,代碼行數:18,代碼來源:SendEventNotifications.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 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->_pos !== null) {
         $element->appendChild($this->_pos->getDOM($element->ownerDocument));
     }
     return $element;
 }
開發者ID:dalinhuang,項目名稱:popo,代碼行數:17,代碼來源:GmlPoint.php

示例8: 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->_state !== null) {
         $element->setAttribute('state', $this->_state);
     }
     return $element;
 }
開發者ID:VUW-SIM-FIS,項目名稱:emiemi,代碼行數:18,代碼來源:Racy.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)
 {
     $element = parent::getDOM($doc);
     if ($this->_value !== null) {
         $element->setAttribute('value', $this->_value);
     }
     return $element;
 }
開發者ID:dalinhuang,項目名稱:popo,代碼行數:18,代碼來源:AttendeeStatus.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->_algo != null) {
         $element->setAttribute('algo', $this->_algo);
     }
     return $element;
 }
開發者ID:omusico,項目名稱:sugar_work,代碼行數:18,代碼來源:MediaHash.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);
     if ($this->_point !== null) {
         $element->appendChild($this->_point->getDOM($element->ownerDocument));
     }
     return $element;
 }
開發者ID:evgeniarudoman,項目名稱:magento-ce-1.9,代碼行數:17,代碼來源:GeoRssWhere.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->_action !== null) {
         $element->setAttribute('action', $this->_action);
     }
     if ($this->_permission !== null) {
         $element->setAttribute('permission', $this->_permission);
     }
     return $element;
 }
開發者ID:DBezemer,項目名稱:server,代碼行數:21,代碼來源:Access.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)
 {
     $element = parent::getDOM($doc);
     if ($this->_viewCount !== null) {
         $element->setAttribute('viewCount', $this->_viewCount);
     }
     if ($this->_watchCount !== null) {
         $element->setAttribute('watchCount', $this->_watchCount);
     }
     return $element;
 }
開發者ID:omusico,項目名稱:sugar_work,代碼行數:21,代碼來源:Statistics.php

示例14: getDOM

 public function getDOM($doc = null)
 {
     $element = parent::getDOM($doc);
     if ($this->_id != null) {
         $element->setAttribute('id', $this->_id);
     }
     if ($this->_href != null) {
         $element->setAttribute('href', $this->_href);
     }
     return $element;
 }
開發者ID:jorgenils,項目名稱:zend-framework,代碼行數:11,代碼來源:OriginalEvent.php

示例15: 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->_viewCount !== null) {
         $element->setAttribute('viewCount', $this->_viewCount);
     }
     if ($this->_watchCount !== null) {
         $element->setAttribute('watchCount', $this->_watchCount);
     }
     return $element;
 }
開發者ID:ronseigel,項目名稱:agent-ohm,代碼行數:21,代碼來源:Statistics.php


注:本文中的Zend_Gdata_Extension::getDOM方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。