black-lamp/blcms-staticpage

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

Module for static pages

Installs: 659

Dependents: 5

Suggesters: 0

Security: 0

Stars: 0

Watchers: 7

Forks: 1

Open Issues: 3

Type:yii2-extension

v0.0.12 2017-01-19 10:47 UTC

This package is not auto-updated.

Last update: 2024-04-27 17:26:07 UTC


README

Static pages seo-data extention for BlackLamp CMS

php yii migrate --migrationPath=@yii/rbac/migrations php yii migrate --migrationPath=@vendor/black-lamp/blcms-staticpage/migrations

Roles and its permissions:

staticPageManager

  • viewStaticPages
  • editStaticPage
  • deleteStaticPage

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();