示例#1
0
文件: URL.php 项目: ariol/adminshop
 public function root(DOMElement &$root)
 {
     // Add urlset namespace.
     $root->setAttribute('xmlns', 'http://www.sitemaps.org/schemas/sitemap/0.9');
     if (NULL !== $this->driver) {
         $this->driver->root($root);
     }
 }
示例#2
0
 public function root(DOMElement &$root)
 {
     // Add urlset namespace.
     $root->setAttribute('xmlns', 'http://www.sitemaps.org/schemas/sitemap/0.9');
     $root->setAttribute('xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance');
     $root->setAttribute('xsi:schemaLocation', 'http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd');
     if (NULL !== $this->driver) {
         $this->driver->root($root);
     }
 }