function drupal_autoload_interface

7.x bootstrap.inc drupal_autoload_interface($interface)

Confirms that an interface is available.

This function is rarely called directly. Instead, it is registered as an spl_autoload() handler, and PHP calls it for us when necessary.

Parameters

$interface: The name of the interface to check or load.

Return value

TRUE if the interface is currently available, FALSE otherwise.

Related topics

1 string reference to 'drupal_autoload_interface'
_drupal_bootstrap_database in drupal-7.x/includes/bootstrap.inc
Initializes the database system and registers autoload functions.

File

drupal-7.x/includes/bootstrap.inc, line 3068
Functions that need to be loaded on every Drupal request.

Code

function drupal_autoload_interface($interface) {
  return _registry_check_code('interface', $interface);
}