drupal_autoload_interface

  1. drupal
    1. drupal7
Versionen
drupal7 drupal_autoload_interface($interface)

Confirm that an interface is available.

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

Übergabeparameter

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

Rückgabewert

TRUE if the interface is currently available, FALSE otherwise.

Verwandte Themen

Code

includes/bootstrap.inc, line 1710

<?php
function drupal_autoload_interface($interface) {
  return _registry_check_code('interface', $interface);
}
?>

Kommentare

Kommentar hinzufügen

Der Inhalt dieses Feldes wird nicht öffentlich zugänglich angezeigt.
  • Internet- und E-Mail-Adressen werden automatisch umgewandelt.
  • Zulässige HTML-Tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Zeilen und Absätze werden automatisch erzeugt.

Weitere Informationen über Formatierungsoptionen

Kommentar hinzufügen

Der Inhalt dieses Feldes wird nicht öffentlich zugänglich angezeigt.
  • Internet- und E-Mail-Adressen werden automatisch umgewandelt.
  • Zulässige HTML-Tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Zeilen und Absätze werden automatisch erzeugt.

Weitere Informationen über Formatierungsoptionen