You are here

function _blazy_can_install in Blazy 7

Checks if Blazy can proceed the install.

2 calls to _blazy_can_install()
blazy_install in ./blazy.install
Implements hook_install().
blazy_requirements in ./blazy.install
Implements hook_requirements().

File

./blazy.install, line 13
Installation actions for Blazy.

Code

function _blazy_can_install() {
  return function_exists('registry_autoload_boot') || function_exists('psr0_autoloader') || function_exists('xautoload') || function_exists('autoload');
}