ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
OAuthConsumer Class Reference
+ Collaboration diagram for OAuthConsumer:

Public Member Functions

 __construct ($key, $secret, $callback_url=null)
 
 __toString ()
 

Data Fields

 $key
 
 $secret
 

Detailed Description

Definition at line 20 of file OAuth.php.

Constructor & Destructor Documentation

◆ __construct()

OAuthConsumer::__construct (   $key,
  $secret,
  $callback_url = null 
)

Definition at line 25 of file OAuth.php.

26  {
27  $this->key = $key;
28  $this->secret = $secret;
29  $this->callback_url = $callback_url;
30  }

Member Function Documentation

◆ __toString()

OAuthConsumer::__toString ( )

Definition at line 32 of file OAuth.php.

33  {
34  return "OAuthConsumer[key=$this->key,secret=$this->secret]";
35  }

Field Documentation

◆ $key

OAuthConsumer::$key

Definition at line 22 of file OAuth.php.

◆ $secret

OAuthConsumer::$secret

Definition at line 23 of file OAuth.php.


The documentation for this class was generated from the following file: