warsztatweb / yii2-seo-helper
Set SEO variables (Title, Description etc) from every model;
Requires
- devgroup/yii2-jsoneditor: *
- yiisoft/yii2: ~2.0.0
This package is not auto-updated.
Last update: 2025-03-29 01:15:01 UTC
README
Set SEO variables (Title, Description etc) from every model;
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist warsztatweb/yii2-seo-helper "*"
or add
"warsztatweb/yii2-seo-helper": "*"
to the require section of your composer.json
file.
Usage
Once the extension is installed, simply use it in your code by:
Attach the component in your config file:
'components' => [ 'seo' => [ 'class' => 'warsztatweb\seo\Helper', ], ],
Using
Set SEO data
echo Yii::$app->seo->set($model);
$model should have these attributes to work properly:
meta_title meta_description meta_keywords h1 params[] eg: params["og:image"]
Module can handla other columns like title,name,nazwa,tytul,tyt for meta_title; columns like lead, description, desc, html for meta_description. It looks for column named baner, banner, thumb, image for automaticlay generated og:image property.
og tags are generated automaticaly based on meta_title, meta_desription
SEO Meta based on route
//todo
SEO Redirect
For enabling SEO Redirect add to configuration file
'errorHandler' => [ 'class' => 'warsztatweb\seo\Redirect', ],
Based on Amirax SEO Tools for Yii 2 https://github.com/Amirax/yii2-seo-tools