maks757 / yii2-seo
There is no license information available for the latest version (v1.1.0) of this package.
SEO extension for the Yii framework
v1.1.0
2018-05-15 15:53 UTC
Requires
This package is not auto-updated.
Last update: 2026-03-07 06:46:52 UTC
README
Yii framework seo optimization module
yii migrate --migrationPath=@vendor/maks757/yii2-seo/migrations
ActiveRecord config behaviors
public function behaviors() { return [ 'seo_data' => [ 'class' => 'maks757\seo\behaviors\SeoDataBehavior', 'generation_field' => 'title' ], //... ]; }
add rules
public function rules() { return [ //... [['seoUrl', 'seoTitle',], 'string', 'max' => 255], [['seoKeywords',], 'string', 'max' => 512], [['seoDescription',], 'string', 'max' => 1024], ]; }
you can add properties
/** * @property string $seoUrl * @property string $seoTitle * @property string $seoKeywords * @property string $seoDescriptin */
and add input to form
<?= $form->field($model, 'seoUrl')->textInput() ?> <?= $form->field($model, 'seoTitle')->textInput() ?> <?= $form->field($model, 'seoDescription')->textarea() ?> <?= $form->field($model, 'seoKeywords')->textarea() ?>