Skip to content

olessavluk/yii2-settings

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Settings Component

Simple yii2 component for persistent settings storage

Installation:

The preferred way to install this extension is through composer.

Either run

php composer.phar require olessavluk/yii2-settings "*@dev"

or add

"olessavluk/yii2-settings": "*@dev"

to your composer.json file.

Usage

Add migration to create table for settings:

class m150929_124601_settings extends olessavluk\settings\m150929_122401_settings
{
}

Add the following code in your application configuration:

'components' => [
  ...
  /**
   * required for advanced application template,
   * to share cache between frontend and backend
   */
  'frontCache' => [
     'class' => 'yii\caching\FileCache',
     'cachePath' => '@frontend/runtime/cache',
  ],
  'settings' => [
      'class' => '\olessavluk\settings\SettingsComponent',
      'cacheName' => 'frontCache',
      'defaults' => [ //optional default settings
          'app' => [
              'siteName' => 'MyApp',
              'adminEmail' => 'admin@exapmle.com',
              'fromEmail' => 'no-reply@example.com',
          ],
      ],
  ],
  ...
]

Now you can use this component:

Yii->$app->settings->get('app', 'siteName');
Yii->$app->settings->delete('app', 'siteName');
Yii->$app->settings->set('app', 'siteName', 'NewSiteName');

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages