mrssoft/yii2-sitemap
最新稳定版本:2.0.0
Composer 安装命令:
composer require mrssoft/yii2-sitemap
包简介
Yii2 sitemap extension
关键字:
README 文档
README
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require mrssoft/yii2-sitemap "^2.0"
or add
"mrssoft/yii2-sitemap": "^2.0"
to the require section of your composer.json.
Usage
Create controller SitemapController.php
<?php namespace app\controllers; use \mrssoft\sitemap\Sitemap; class SitemapController extends \mrssoft\sitemap\SitemapController { /** * @var int Cache duration, set null to disabled */ protected $cacheDuration = 43200; // default 12 hour /** * @var string Cache filename */ protected $cacheFilename = 'sitemap.xml'; protected $enablePriority = false; protected $enableChangeFreq = false; public function models(): array { return [ [ 'class' => \app\models\Page::class, 'change' => Sitemap::MONTHLY, 'priority' => 0.8, 'lastmod' => 'updated_at', ] ]; } public function urls(): array { return [ [ 'url' => ['about/index'], 'priority' => 0.8 ] ]; } }
Add to your models interface \mrssoft\sitemap\SitemapInterface
<?php namespace app\models; class Page extends \yii\db\ActiveRecord implements \mrssoft\sitemap\SitemapInterface { ... /** * @return \yii\db\ActiveQuery */ public static function sitemap(): \yii\db\ActiveQuery { return self::find()->where(['public' => 1]); } /** * @return string */ public function getSitemapUrl(): string { return \yii\helpers\Url::toRoute(['page/view', 'url' => $this->url], true); } }
Add to config url rule.
'components' => [ 'urlManager' => [ 'rules' => [ ... [ 'pattern' => 'sitemap', 'route' => 'sitemap/index', 'suffix' => '.xml' ], ... ] ],
统计信息
- 总下载量: 23.53k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 11
- 点击次数: 1
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-02-11