public static function DrupalOAuthConsumer::load in OAuth 1.0 6.3
Same name and namespace in other branches
- 7.4 includes/DrupalOAuthConsumer.inc \DrupalOAuthConsumer::load()
- 7.3 includes/DrupalOAuthConsumer.inc \DrupalOAuthConsumer::load()
Deprecated - Gets the consumer with the specified key
Parameters
string $key: The key of the consumer to get
bool $provider_consumer: Optional. Whether the consumer we're about to load is a provider or consumer consumer. Defaults to TRUE.
Return value
DrupalOAuthConsumer The loaded consumer object or FALSE if load failed
File
- includes/
DrupalOAuthConsumer.inc, line 143
Class
Code
public static function load($key, $provider_consumer = TRUE) {
return DrupalOAuthConsumer::loadProviderByKey($key, $provider_consumer);
}