Skip to content

CodeIgniter Settings Documentation

This project provides a simple interface that you can use in place of calling config() to allow you to read and store config values in the database. If the value has not been updated and saved in the database then the original value from the config file will be used.

This allows you to save your application's default state as values in config files, all stored in version control, and still allows your users to override those settings once the site is live.

How it works:

Set the value:

service('settings')->set('App.siteName', 'Example');

Get the value:

service('settings')->get('App.siteName');

Forget the value:

service('settings')->forget('App.siteName');

Requirements

PHP CodeIgniter

Acknowledgements

Every open-source project depends on its contributors to be a success. The following users have contributed in one manner or another in making this project:

Contributors

Made with contrib.rocks.