Integrate Zend 2 XML writer into Yii

Comparing #1 with #2

Revision #2 was created by Jonny Jonny on Feb 3, 2014, 11:50:07 PM.

clearer description of code

Content

[...]
Now we need to collect your data for the XML sitemap.


```php
$model = YourModel::model()->returnMyData();
 // Or whatever your preferred method of collecting the data to use in your XML feed is
```

Now lets create the Feed object in Yii
[...]