eastern-color / sitemap-bundle
This Symfony bundle provide another way to manage your sitemap.
1.0.2
2018-03-05 07:27 UTC
Requires
- php: >=5.5.9
- doctrine/orm: ^2.5
This package is auto-updated.
Last update: 2025-03-29 00:39:30 UTC
README
This Symfony bundle provide another way to manage your sitemap.
Installation
composer require eastern-color/sitemap-bundle
- Enable bundle in symfony's /app/AppKernel.php
new EasternColor\SitemapBundle\EasternColorSitemapBundle()
,
Prerequisites
- You MUST set "framework.templating" in Symfony's config.yml
TODO
- Remove services dependency on container
- Extends this README
Command
ec:sitemap:generate
- option:
--gzip
- option:
Basic Usage (route option)
- Simply add option
sitemap
to any route.- xml:
<option key="sitemap">true</option>
- xml:
- You may provide a list of locales using Symfony parameters, naming it locales
- e.g.:
locales: ['en', 'zh']
- e.g.:
Advanced Usage (custom service provider)
- Create symfony service provider
namespace AppBundle; use EasternColor\SitemapBundle\Services\SitemapXmlGeneratorProvider\SitemapXmlGeneratorProviderBase; class MySitemapXmlGeneratorProvider extends SitemapXmlGeneratorProviderBase { }
License
This bundle is under the MIT license.