Searched refs:storageId (Results 1 – 5 of 5) sorted by relevance
| /plugin/oauth/ |
| H A D | Storage.php | 15 protected $storageId; variable in dokuwiki\\plugin\\oauth\\Storage 18 * @param string $storageId The ID identifying the user 20 public function __construct($storageId) argument 22 $this->storageId = $storageId; 33 return getCacheName($this->storageId . $service, '.oauth');
|
| H A D | Session.php | 120 * @param string $storageId 123 public function setCookie($servicename, $storageId) argument 127 $cookie = "$servicename|oauth|$storageId"; 151 [$servicename, $oauth, $storageId] = sexplode('|', $_COOKIE[DOKU_COOKIE], 3); 153 return ['servicename' => $servicename, 'storageId' => $storageId];
|
| H A D | Adapter.php | 53 * @param string $storageId user based storage key (if available, yet) 56 public function initOAuthService($storageId = '') argument 76 if ($storageId) { 77 $storage = new Storage($storageId); 107 * @param string $storageId 111 public function upgradeStorage($storageId) argument 117 $newStorage = new Storage($storageId);
|
| H A D | OAuthManager.php | 76 $storageId = $this->getStorageId($userdata['mail']); 77 $service->upgradeStorage($storageId); 81 $session->setCookie($logindata['servicename'], $storageId); // set cookie
|
| /plugin/owncloud/ |
| D | helper.php | 50 $storageId = 'local::'.$conf['mediadir'].'/'; 51 if (strlen($storageId) > 64) { 52 $storageId = md5($storageId); 55 $this->dbQuery('SELECT numeric_id FROM `*PREFIX*storages` WHERE `id` LIKE ?', array($storageId));
|