Simple widget for Yii2 framework to generate sitemap.
Support XML format generation.
Support multi language.
The preferred way to install this extension is through Composer.
Either run php composer require mubat/yii2-sitemap-generator
or add "mubat/yii2-sitemap-generator" : "~1.0"
to the require section of your composer.json
Widget contains 2 models:
- Sitemap - base model. It contains SitemapElement array and methods to generate XML.
If
$languages
array published, model will generate 'alternate' links. - SitemapElement - represents one
<url>
element. It contains:$loc
- requrired - page url (as array). Before insert into XML it will be process byyii2\helpers\Url::toRoute()
method.$updated_at
- optional - last page update;$changefreq
- requrired, default'weekly'
- from class constant.$priority
- requrired, default0.4
- page priority.