| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | protected function get_root_element() { |
||
| 35 | if ( ! isset( $this->root ) ) { |
||
| 36 | $this->root = $this->doc->createElement( 'sitemapindex' ); |
||
| 37 | $this->root->setAttribute( 'xmlns', 'http://www.sitemaps.org/schemas/sitemap/0.9' ); |
||
| 38 | $this->doc->appendChild( $this->root ); |
||
| 39 | } |
||
| 40 | |||
| 41 | return $this->root; |
||
| 42 | } |
||
| 43 | } |
||
| 44 |