Getting started

Install by artisan package

Go to You /core/ folder

cd core

Run php artisan commands

php artisan package:installrequire seiger/ssettings "*"
php artisan vendor:publish --provider="Seiger\sSettings\sSettingsServiceProvider"

Configuration in backend

Plugin settings are located at Admin Panel -> Tools -> sSettings.

Extra

If you write your own code that can integrate with the sSettings plugin, you can check the presence of this plugin in the system through a configuration variable.

if (evo()->getConfig('check_sSettings', false)) {
    // You code
}

If the plugin is installed, the result of evo()->getConfig('check_sSettings', false) will always be true. Otherwise, you will get an false.