justcoded/yii2-settings

This package is abandoned and no longer maintained. No replacement package was suggested.

Yii2 Settings Component

Installs: 2 092

Dependents: 1

Suggesters: 0

Security: 0

Stars: 4

Watchers: 4

Forks: 3

Open Issues: 1

Type:yii2-extension

1.0.1 2019-07-13 11:57 UTC

This package is auto-updated.

Last update: 2023-10-13 21:49:25 UTC


README

993323

Yii2 Settings Extension


Replacement for Yii app params. Easy to use component to store application settings. Supports only DB storage for now. Have ready to use base Settings form model and controller Action.

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist justcoded/yii2-settings "*"

or add

"justcoded/yii2-settings": "*"

to the require section of your composer.json.

Configuration

Database migration

Before usage this extension, we'll also need to prepare the database.

You can add migrations path to your console config and then run migrate command:

'migrate' => [
    'migrationPath' => [
        '@vendor/justcoded/yii2-settings/migrations'
    ],
],

or you can run the command below:

php yii migrate --migrationPath=@vendor/justcoded/yii2-settings/migrations

Component Setup

To use the Setting Component, you need to configure the components array in your application configuration:

'components' => [
    'settings' => [
        'class'     => 'justcoded\yii2\settings\components\DbSettings',
    ],
],

and add component name to bootstrap array

    'bootstrap'  => ['log', 'settings'],

Usage

// set value
Yii::$app->settings->set('section_name', 'key', 'value');

// get value
$value = Yii::$app->settings->get('section_name', 'key');

There is a possibility to use models as some setting group object. To do this you have to add modelsMap array to component's configuration:

    'settings' => [
        'class'     => 'justcoded\yii2\settings\components\DbSettings',
        'modelsMap' => [
            'section1' => 'app\models\MySettingsForm1',
            'section2' => 'app\models\MySettingsForm2',
        ],
    ],

Add action to controller to get settings form with keys according to the model's properties

    public function actions()
    {
        return [
            'actionName' => [
                'class' => 'justcoded\yii2\settings\actions\SettingsAction',
                'modelClass' => 'app\models\MySettingsForm1',
            ],
        ];
    }

and create view with some active form. (You can copy a template from extension "views" folder)

Now you can get settings in better way:

$value = Yii::$app->settings->section1->myPropertyName;

This is very useful, if you overwrite Yii/Application classes and specify correct PHPDoc comments. In this way IDE will highlight all sections and properties.

Example

You can check the example on our Yii2 starter kit.