ed-smartass / yii2-settings
A flexible and robust dynamic settings management extension for Yii2 applications with database storage and caching support
Installs: 63
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- yiisoft/yii2: ~2.0.14
Requires (Dev)
- phpunit/phpunit: ^8.0
README
A simple, flexible and efficient key-value storage extension for Yii2 applications. This extension allows you to store application settings in the database and optionally cache them for better performance.
Features
- Store application settings in a database table
- Support for multiple data types (integer, float, string, boolean, array)
- Automatic type detection
- Cache integration for improved performance
- Access settings as component properties
- Process application configuration with settings
- Easy to integrate with existing Yii2 applications
Installation
- Install via composer
composer require ed-smartass/yii2-settings
- Apply migrations
php yii migrate --migrationPath=@vendor/ed-smartass/yii2-settings/src/migrations
Or add to console config
return [ // ... 'controllerMap' => [ // ... 'migrate' => [ 'class' => 'yii\console\controllers\MigrateController', 'migrationPath' => [ '@console/migrations', // Default migration folder '@vendor/ed-smartass/yii2-settings/src/migrations' ] ] // ... ] // ... ];
- Config application
return [ // ... 'bootstrap' => [ // ... 'settings' ], 'components' => [ // ... 'settings' => [ 'class' => 'Smartass\Yii2Settings\Settings', // Name of table with settings. Default: `{{%setting}}`. 'table' => '{{%setting}}', // ID of db component in application. Default: `db`. 'db' => 'db', // ID of cache component in application. Default: `cache`. // Set to `null` to disable caching. 'cache' => 'cache', // Key for storing settings in cache. Default: `settings`. 'cacheKey' => 'settings', // Cache duration for settings. Default: `null` (no expiration). 'cacheDuration' => null, // If you want to change Application config set to `true` // and set value at config like `'language' => '%main.language|ru%'`. // Where: `main.language` is setting name and `ru` is default value // Default: `false`. 'processConfig' => false, ] ] // ... ];
Usage
// List all settings Yii::$app->settings->settings // Get setting Yii::$app->settings->get('access_token_ttl'); // Or Yii::$app->settings->access_token_ttl; // Set setting Yii::$app->settings->set('access_token_ttl', 3600*24*7); // Or Yii::$app->settings->access_token_ttl = 3600*24*7; // Only if setting `access_token_ttl` already exists // Delete setting Yii::$app->settings->delete('access_token_ttl'); // Or Yii::$app->settings->set('access_token_ttl', null); // Delete all settings Yii::$app->settings->flush(); // Refresh cache Yii::$app->settings->refresh();
Methods
-
get($key, $default = null, $saveDefault = false) — get setting by key
- $key — key of setting
- $default — default value if setting does not exist
- $saveDefault — save default value if setting does not exist
-
set($key, $value, $type = null) — set setting
- $key — key of setting
- $value — value of setting (if value is
null
setting will be deleted) - $type — type of setting (
integer
,float
,string
,boolean
,array
), if type isnull
then type will be automatically detected
-
delete($key) — delete setting by key
- $key — key of setting
-
flush() — delete all settings
-
refresh() — clear the internal settings cache and delete cache entry if caching is enabled
Supported Value Types
integer
— Integer valuesfloat
— Float valuesstring
— String valuesboolean
— Boolean valuesarray
— Array values (stored as JSON)