sms erros on pin reset
[namibia] / 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-2013 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 #-> Default Timezone.
20 date_default_timezone_set('Africa/Johannesburg');
21
22 // Composer autoloading
23 if (file_exists('vendor/autoload.php')) {
24     $loader = include 'vendor/autoload.php';
25 }
26
27 $zf2Path = false;
28
29 if (is_dir('vendor/ZF2/library')) {
30     $zf2Path = 'vendor/ZF2/library';
31 } elseif (getenv('ZF2_PATH')) {      // Support for ZF2_PATH environment variable or git submodule
32     $zf2Path = getenv('ZF2_PATH');
33 } elseif (get_cfg_var('zf2_path')) { // Support for zf2_path directive value
34     $zf2Path = get_cfg_var('zf2_path');
35 }
36
37 if ($zf2Path) {
38     if (isset($loader)) {
39         $loader->add('Zend', $zf2Path);
40     } else {
41         include $zf2Path . '/Zend/Loader/AutoloaderFactory.php';
42         Zend\Loader\AutoloaderFactory::factory(array(
43             'Zend\Loader\StandardAutoloader' => array(
44                 'autoregister_zf' => true
45             )
46         ));
47     }
48 }
49
50 if (!class_exists('Zend\Loader\AutoloaderFactory')) {
51     throw new RuntimeException('Unable to load ZF2. Run `php composer.phar install` or define a ZF2_PATH environment variable.');
52 }