You are here

public function OAuthSessionSESSION::get in Lingotek Translation 7.7

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

* Gets a variable value * *

Parameters

string $key: * @return The value or null if not set.

Overrides OAuthSessionAbstract::get

File

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

Class

OAuthSessionSESSION

Code

public function get($key) {
  return @$_SESSION[$key];
}