You are here

public function OAuthStorePostgreSQL::deleteConsumer in Lingotek Translation 7.7

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

Delete a consumer key. This removes access to our site for all applications using this key.

Parameters

string consumer_key:

int user_id user registering this server:

boolean user_is_admin:

Overrides OAuthStoreAbstract::deleteConsumer

File

lib/oauth-php/library/store/OAuthStorePostgreSQL.php, line 1090

Class

OAuthStorePostgreSQL

Code

public function deleteConsumer($consumer_key, $user_id, $user_is_admin = false) {
  if ($user_is_admin) {
    $this
      ->query('
                    DELETE FROM oauth_server_registry
                    WHERE osr_consumer_key = \'%s\'
                      AND (osr_usa_id_ref = \'%d\' OR osr_usa_id_ref IS NULL)
                    ', $consumer_key, $user_id);
  }
  else {
    $this
      ->query('
                    DELETE FROM oauth_server_registry
                    WHERE osr_consumer_key = \'%s\'
                      AND osr_usa_id_ref   = \'%d\'
                    ', $consumer_key, $user_id);
  }
}