这个提交包含在:
fabrixxm 2018-12-12 20:52:09 +01:00 提交者 Hypolite Petovan
父节点 ce31ccaade
当前提交 f8d2f81d81
共有 1 个文件被更改,包括 11 次插入9 次删除

查看文件

@ -14,14 +14,16 @@ The class must implement `Friendica\Model\Storage\IStorage` interface. All metho
namespace Friendica\Model\Storage;
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);
}
```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.
@ -196,7 +198,7 @@ function samplestorage_unistall()
// when the plugin is uninstalled, we unregister the backend.
StorageManager::unregister("Sample Storage");
}
```