You are here

abstract protected function OAuthStoreSQL::query_row_assoc in Lingotek Translation 7.6

Same name and namespace in other branches
  1. 7.7 lib/oauth-php/library/store/OAuthStoreSQL.php \OAuthStoreSQL::query_row_assoc()
  2. 7.2 lib/oauth-php/library/store/OAuthStoreSQL.php \OAuthStoreSQL::query_row_assoc()
  3. 7.3 lib/oauth-php/library/store/OAuthStoreSQL.php \OAuthStoreSQL::query_row_assoc()
  4. 7.4 lib/oauth-php/library/store/OAuthStoreSQL.php \OAuthStoreSQL::query_row_assoc()
  5. 7.5 lib/oauth-php/library/store/OAuthStoreSQL.php \OAuthStoreSQL::query_row_assoc()

* Perform a query, return the first row * *

Parameters

string sql: * @param vararg arguments (for sprintf) * @return array

9 calls to OAuthStoreSQL::query_row_assoc()
OAuthStoreSQL::getConsumer in lib/oauth-php/library/store/OAuthStoreSQL.php
* Fetch a consumer of this server, by consumer_key. * *
OAuthStoreSQL::getConsumerAccessToken in lib/oauth-php/library/store/OAuthStoreSQL.php
* Fetch the consumer access token, by access token. * *
OAuthStoreSQL::getConsumerRequestToken in lib/oauth-php/library/store/OAuthStoreSQL.php
* Fetch the consumer request token, by request token. * *
OAuthStoreSQL::getSecretsForSignature in lib/oauth-php/library/store/OAuthStoreSQL.php
* Find the server details for signing a request, always looks for an access token. * The returned credentials depend on which local user is making the request. * * The consumer_key must belong to the user or be public (user id is null) * *…
OAuthStoreSQL::getSecretsForVerify in lib/oauth-php/library/store/OAuthStoreSQL.php
* Find stored credentials for the consumer key and token. Used by an OAuth server * when verifying an OAuth request. * *

... See full list

2 methods override OAuthStoreSQL::query_row_assoc()
OAuthStoreMySQL::query_row_assoc in lib/oauth-php/library/store/OAuthStoreMySQL.php
* Perform a query, return the first row * *
OAuthStorePDO::query_row_assoc in lib/oauth-php/library/store/OAuthStorePDO.php
* Perform a query, return the first row * *

File

lib/oauth-php/library/store/OAuthStoreSQL.php, line 1779

Class

OAuthStoreSQL

Code

protected abstract function query_row_assoc($sql);