You are here

abstract class OAuthSessionAbstract in Lingotek Translation 7.3

Same name and namespace in other branches
  1. 7.7 lib/oauth-php/library/session/OAuthSessionAbstract.class.php \OAuthSessionAbstract
  2. 7.2 lib/oauth-php/library/session/OAuthSessionAbstract.class.php \OAuthSessionAbstract
  3. 7.4 lib/oauth-php/library/session/OAuthSessionAbstract.class.php \OAuthSessionAbstract
  4. 7.5 lib/oauth-php/library/session/OAuthSessionAbstract.class.php \OAuthSessionAbstract
  5. 7.6 lib/oauth-php/library/session/OAuthSessionAbstract.class.php \OAuthSessionAbstract

This class is used to store Session information on the server. Most people will use the $_SESSION based implementation, but you may prefer a SQL, Memcache or other implementation.

Hierarchy

Expanded class hierarchy of OAuthSessionAbstract

File

lib/oauth-php/library/session/OAuthSessionAbstract.class.php, line 38

View source
abstract class OAuthSessionAbstract {
  public abstract function get($key);
  public abstract function set($key, $data);

}

Members

Namesort descending Modifiers Type Description Overrides
OAuthSessionAbstract::get abstract public function 1
OAuthSessionAbstract::set abstract public function 1