Corrections diverses
[zf2.biz/application_blanche.git] / init_autoloader.php
1 <?php
2 /**
3  * Zend Framework (http://framework.zend.com/)
4  *
5  * @link      http://github.com/zendframework/ZendSkeletonApplication for the canonical source repository
6  * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
7  * @license   http://framework.zend.com/license/new-bsd New BSD License
8  */
9
10 /**
11  * This autoloading setup is really more complicated than it needs to be for most
12  * applications. The added complexity is simply to reduce the time it takes for
13  * new developers to be productive with a fresh skeleton. It allows autoloading
14  * to be correctly configured, regardless of the installation method and keeps
15  * the use of composer completely optional. This setup should work fine for
16  * most users, however, feel free to configure autoloading however you'd like.
17  */
18
19 // Composer autoloading
20 if (file_exists('vendor/autoload.php')) {
21     $loader = include 'vendor/autoload.php';
22 }
23
24 $zf2Path = false;
25
26 if (getenv('ZF2_PATH')) {           // Support for ZF2_PATH environment variable or git submodule
27     $zf2Path = getenv('ZF2_PATH');
28 } elseif (get_cfg_var('zf2_path')) { // Support for zf2_path directive value
29     $zf2Path = get_cfg_var('zf2_path');
30 } elseif (is_dir('vendor/ZF2/library')) {
31     $zf2Path = 'vendor/ZF2/library';
32 }
33
34 if ($zf2Path) {
35     if (isset($loader)) {
36         $loader->add('Zend', $zf2Path);
37     } else {
38         include $zf2Path . '/Zend/Loader/AutoloaderFactory.php';
39         Zend\Loader\AutoloaderFactory::factory(array(
40             'Zend\Loader\StandardAutoloader' => array(
41                 'autoregister_zf' => true
42             )
43         ));
44     }
45 }
46
47 if (!class_exists('Zend\Loader\AutoloaderFactory')) {
48     throw new RuntimeException('Unable to load ZF2. Run `php composer.phar install` or define a ZF2_PATH environment variable.');
49 }