drupal_autoload_class

Versions
7
drupal_autoload_class($class)

Confirm that a class 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

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

Return value

TRUE if the class is currently available, FALSE otherwise.

Related topics

Code

includes/bootstrap.inc, line 2003

<?php
function drupal_autoload_class($class) {
  return _registry_check_code('class', $class);
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.