Friendica Storage Backend Addon development =========================================== * [Home](help) Storage backends can be added via addons. A storage backend is implemented as a class, and the plugin register the class to make it avaiable to the system. ## The Storage Backend Class The class must live in `Friendica\Addon\youraddonname` namespace, where `youraddonname` the folder name of your addon. The class must implement `Friendica\Model\Storage\IStorage` interface. All method in the interface must be implemented: namespace Friendica\Model\Storage; ```php interface IStorage { public static function get($ref); public static function put($data, $ref = ""); public static function delete($ref); public static function getOptions(); public static function saveOptions($data); } ``` - `get($ref)` returns data pointed by `$ref` - `put($data, $ref)` saves data in `$data` to position `$ref`, or a new position if `$ref` is empty. - `delete($ref)` delete data pointed by `$ref` Each storage backend can have options the admin can set in admin page. - `getOptions()` returns an array with details about each option to build the interface. - `saveOptions($data)` get `$data` from admin page, validate it and save it. The array returned by `getOptions()` is defined as: [ 'option1name' => [ ..info.. ], 'option2name' => [ ..info.. ], ... ] An empty array can be returned if backend doesn't have any options. The info array for each option is defined as: [ 'type', define the field used in form, and the type of data. one of 'checkbox', 'combobox', 'custom', 'datetime', 'input', 'intcheckbox', 'password', 'radio', 'richtext', 'select', 'select_raw', 'textarea', 'yesno' 'label', Translatable label of the field. This label will be shown in admin page value, Current value of the option 'help text', Translatable description for the field. Will be shown in admin page extra data Optional. Depends on which 'type' this option is: - 'select': array `[ value => label ]` of choices - 'intcheckbox': value of input element - 'select_raw': prebuild html string of `