function drupal_autoload_interface

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

File

includes/bootstrap.inc, line 3367
Functions that need to be loaded on every Drupal request.

Code

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

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/includes!bootstrap.inc/function/drupal_autoload_interface/7.x