maks757/seo_static_page

There is no license information available for the latest version (v2.1.14) of this package.

Module for static pages

Installs: 38

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 1

Type:yii2-extension

v2.1.14 2018-01-18 16:19 UTC

README

Static pages seo-data extension

php yii migrate --migrationPath=@vendor/maks757/seo_static_page/migrations

Usage

Add behavior to controller with unique key. This key you will use in admin panel of module for setting this page:

public function behaviors()
    {
        return [
            'staticPage' => [
                'class' => StaticPageBehavior::className(),
                'key' => 'shop'
            ]
        ];
    }

Then add in action next record. It adds to your page title, meta-description and meta-keywords:

$this->registerStaticSeoData();