示例#1
0
 public function transferFromDOM($node)
 {
     parent::transferFromDOM($node);
     $this->_rootNamespace = null;
     $this->_rootNamespaceURI = $node->namespaceURI;
     $this->_rootElement = $node->localName;
 }
示例#2
0
文件: Link.php 项目: hackingman/TubeX
 protected function takeAttributeFromDOM($attribute)
 {
     switch ($attribute->localName) {
         case 'href':
             $this->_href = $attribute->nodeValue;
             break;
         case 'rel':
             $this->_rel = $attribute->nodeValue;
             break;
         case 'type':
             $this->_type = $attribute->nodeValue;
             break;
         case 'hreflang':
             $this->_hrefLang = $attribute->nodeValue;
             break;
         case 'title':
             $this->_title = $attribute->nodeValue;
             break;
         case 'length':
             $this->_length = $attribute->nodeValue;
             break;
         default:
             parent::takeAttributeFromDOM($attribute);
     }
 }
示例#3
0
 public function __construct()
 {
     $this->registerNamespace('gd', 'http://schemas.google.com/g/2005');
     $this->registerNamespace('openSearch', 'http://a9.com/-/spec/opensearchrss/1.0/', 1, 0);
     $this->registerNamespace('openSearch', 'http://a9.com/-/spec/opensearch/1.1/', 2, 0);
     $this->registerNamespace('rss', 'http://blogs.law.harvard.edu/tech/rss');
     parent::__construct();
 }
示例#4
0
 public function __construct()
 {
     /* NOTE: namespaces must be registered before calling parent */
     $this->registerNamespace('openSearch', 'http://a9.com/-/spec/opensearchrss/1.0/');
     $this->registerNamespace('rss', 'http://blogs.law.harvard.edu/tech/rss');
     $this->registerNamespace('gd', 'http://schemas.google.com/g/2005');
     parent::__construct();
 }
 protected function takeAttributeFromDOM($attribute)
 {
     switch ($attribute->localName) {
         case 'type':
             $this->_type = $attribute->nodeValue;
             break;
         default:
             parent::takeAttributeFromDOM($attribute);
     }
 }
示例#6
0
 protected function takeAttributeFromDOM($attribute)
 {
     switch ($attribute->localName) {
         case 'uri':
             $this->_uri = $attribute->nodeValue;
             break;
         case 'version':
             $this->_version = $attribute->nodeValue;
             break;
         default:
             parent::takeAttributeFromDOM($attribute);
     }
 }
示例#7
0
 protected function takeChildFromDOM($child)
 {
     $absoluteNodeName = $child->namespaceURI . ':' . $child->localName;
     switch ($absoluteNodeName) {
         case $this->lookupNamespace('app') . ':' . 'draft':
             $draft = new Zend_Gdata_App_Extension_Draft();
             $draft->transferFromDOM($child);
             $this->_draft = $draft;
             break;
         default:
             parent::takeChildFromDOM($child);
             break;
     }
 }
示例#8
0
 protected function takeAttributeFromDOM($attribute)
 {
     switch ($attribute->localName) {
         case 'term':
             $this->_term = $attribute->nodeValue;
             break;
         case 'scheme':
             $this->_scheme = $attribute->nodeValue;
             break;
         case 'label':
             $this->_label = $attribute->nodeValue;
             break;
         default:
             parent::takeAttributeFromDOM($attribute);
     }
 }
示例#9
0
 protected function takeAttributeFromDOM($attribute)
 {
     switch ($attribute->localName) {
         case 'url':
             $this->_url = $attribute->nodeValue;
             break;
         case 'height':
             $this->_height = $attribute->nodeValue;
             break;
         case 'width':
             $this->_width = $attribute->nodeValue;
             break;
         default:
             parent::takeAttributeFromDOM($attribute);
     }
 }
示例#10
0
 protected function takeChildFromDOM($child)
 {
     $absoluteNodeName = $child->namespaceURI . ':' . $child->localName;
     switch ($absoluteNodeName) {
         case $this->lookupNamespace('atom') . ':' . 'name':
             $name = new Zend_Gdata_App_Extension_Name();
             $name->transferFromDOM($child);
             $this->_name = $name;
             break;
         case $this->lookupNamespace('atom') . ':' . 'email':
             $email = new Zend_Gdata_App_Extension_Email();
             $email->transferFromDOM($child);
             $this->_email = $email;
             break;
         case $this->lookupNamespace('atom') . ':' . 'uri':
             $uri = new Zend_Gdata_App_Extension_Uri();
             $uri->transferFromDOM($child);
             $this->_uri = $uri;
             break;
         default:
             parent::takeChildFromDOM($child);
             break;
     }
 }
示例#11
0
 public function __construct($text = null)
 {
     parent::__construct();
     $this->_text = $text;
 }
示例#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);
     return $element;
 }
示例#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)
 {
     $element = parent::getDOM($doc);
     return $element;
 }