pesto / yii2-variable
A simple solution for the storage of variables in the database
Installs: 17
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2025-01-10 19:21:01 UTC
README
Install
Выполните команду
$ php composer.phar require pesto/yii2-variable "*"
или добавьте
"pesto/yii2-variable": "*"
в секцию require
вашего composer.json
файла.
Выполните миграции
./yii migrate/up --migrationPath=@vendor/pesto/yii2-variable/migrations
Configuration
Добавьте следующее в ваш конфигурационный файл:
<?php ... 'components' => [ 'variable' => [ 'class' => 'pesto\variable\Variable', ] ... ], ...
Usage
Теперь можно в любом месте кода сохранить переменную:
<?php Yii::$app->variable->set(<name>, <value>) ?>
или получить значение уже сохраненной переменной:
<?php Yii::$app->variable->get(<name>, <default_value>) ?>