drupal_autoload_interface($interface)Confirm 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.
$interface The name of the interface to check or load.
TRUE if the interface is currently available, FALSE otherwise.
includes/bootstrap.inc, line 2336
<?php
function drupal_autoload_interface($interface) {
return _registry_check_code('interface', $interface);
}
?>