newrow / yii2-settings
Yii2 settings with database module with GUI manager supported
Requires
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
README
Yii2 settings with database module with GUI manager supported
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist newrow/yii2-settings "*"
or add
"newrow/yii2-settings": "*"
to the require section of your composer.json file.
Usage
####Add settings into component config:
'components' => [ 'settings'=>[ 'class'=>'newrow\settings\Settings', 'roles' => ['admin'], ], ],
####Ok let see this codesnipet to use:
$settings = Yii::$app->settings; $value = $settings->get('section,'key'); $settings->set('section','key', 'value', 'integer'); $settings->delete('section,'key'); $settings->deleteAll('section,'key'); $settings->clearCache(); // automatic call when use set()
####Look at line:
$settings->set($section,$key,$value,$type);
You can use $section for distribute setting such as system,user... And the $type will be use for get settings. This extension have used settype for set the type of a setting when you get it
####If you want to manager setting with GUI then add settings into module config:
'modules' => [ 'settings' => [ 'class'=>'newrow\settings\Module', ] ]
And go to localhost/index.php?r=settings/manager/index.php