You are here

function sqlsrv_module_implements_alter in Drupal driver for SQL Server and SQL Azure 7.2

Same name and namespace in other branches
  1. 7.3 sqlsrv.module \sqlsrv_module_implements_alter()
  2. 7 sqlsrv.module \sqlsrv_module_implements_alter()

Implements hook_module_implements_alter().

Proactively prevents Drupal from identifying SQLSRV PHP module functions as hook implementations.

See http://php.net/manual/en/book.sqlsrv.php

Known conflicts: Services module, hook_server_info

File

./sqlsrv.module, line 13

Code

function sqlsrv_module_implements_alter(&$implementations, $hook) {
  if (in_array($hook, array(
    'server_info',
    'begin_transaction',
    'cancel',
    'client_info',
    'close',
    'commit',
    'configure',
    'connect',
    'errors',
    'execute',
    'fetch_array',
    'fetch_object',
    'fetch',
    'field_metadata',
    'free_stmt',
    'get_config',
    'get_field',
    'has_rows',
    'next_result',
    'num_fields',
    'num_rows',
    'prepare',
    'query',
    'rollback',
    'rows_affected',
    'send_stream_data',
  ))) {
    unset($implementations['sqlsrv']);
  }
}