Options
Options provide a simple and standardized way of storing data in the database. The functions makes it easy to create, access, update, and delete options. All the data is stored in the alte_options table under a given option name.
Structure
Example Usage
Notes
Option names are unique, if you set an option with an existing option name, that option value will be updated to the provided value, so be careful
If you store a json string in an option, when you get the option, it will already be decoded and you will get an array back ready for your usage
You can store: html, strings, json, numbers etc in the option values for your usage around the application
Admiro uses the options to store the app settings and configurations. You can export this configs under general settings menu and import them whenever you wish
Last updated