function oauth2_server_oauth2_server_scope_delete in OAuth2 Server 7
Implements hook_oauth2_server_scope_delete().
i18n_string integration for oauth2_server_scope.
File
- ./
oauth2_server.module, line 527 - Provides OAuth2 server functionality.
Code
function oauth2_server_oauth2_server_scope_delete($scope) {
if (module_exists('i18n_string')) {
i18n_string_object_remove('oauth2_server_scope', $scope);
}
}