PluginProbe
UpdraftPlus: WP Backup & Migration Plugin / 1.3.8
UpdraftPlus: WP Backup & Migration Plugin v1.3.8
1.26.7 1.26.6 1.26.5 1.26.4 1.26.3 1.9.19 1.9.25 1.9.26 1.9.30 1.9.31 1.9.32 1.9.4 1.9.40 1.9.41 1.9.42 1.9.43 1.9.44 1.9.45 1.9.46 1.9.5 1.9.50 1.9.51 1.9.60 1.9.62 1.9.63 All 371 releases
updraftplus / includes / Dropbox / OAuth / Storage / StorageInterface.php

StorageInterface.php in UpdraftPlus: WP Backup & Migration Plugin 1.3.8, at includes/Dropbox/OAuth/Storage/StorageInterface.php

31 lines 644 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * OAuth storage handler interface
5 * @author Ben Tadiar <ben@handcraftedbyben.co.uk>
6 * @link https://github.com/benthedesigner/dropbox
7 * @package Dropbox\OAuth
8 * @subpackage Storage
9 */
10
11 interface Dropbox_StorageInterface
12 {
13 /**
14 * Get a token by type
15 * @param string $type Token type to retrieve
16 */
17 public function get($type);
18
19 /**
20 * Set a token by type
21 * @param \stdClass $token Token object to set
22 * @param string $type Token type
23 */
24 public function set($token, $type);
25
26 /**
27 * Delete tokens for the current session/user
28 */
29 public function delete();
30 }
31