You are here

public function OAuthSessionSESSION::set in Lingotek Translation 7.7

Same name and namespace in other branches
  1. 7.2 lib/oauth-php/library/session/OAuthSessionSESSION.php \OAuthSessionSESSION::set()
  2. 7.3 lib/oauth-php/library/session/OAuthSessionSESSION.php \OAuthSessionSESSION::set()
  3. 7.4 lib/oauth-php/library/session/OAuthSessionSESSION.php \OAuthSessionSESSION::set()
  4. 7.5 lib/oauth-php/library/session/OAuthSessionSESSION.php \OAuthSessionSESSION::set()
  5. 7.6 lib/oauth-php/library/session/OAuthSessionSESSION.php \OAuthSessionSESSION::set()

* Sets a variable value * *

Parameters

string $key The key: * @param any $data The data

Overrides OAuthSessionAbstract::set

File

lib/oauth-php/library/session/OAuthSessionSESSION.php, line 57

Class

OAuthSessionSESSION

Code

public function set($key, $data) {
  $_SESSION[$key] = $data;
}