moved Libs out of core folder
This commit is contained in:
		
							
								
								
									
										31
									
								
								application/libs/FML/autoload.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										31
									
								
								application/libs/FML/autoload.php
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,31 @@ | ||||
| <?php | ||||
|  | ||||
| /** | ||||
|  * FancyManiaLinks - Automatic ManiaLink Generator Framework | ||||
|  * | ||||
|  * @author    steeffeen <mail@steeffeen.com> | ||||
|  * @version   1.3 | ||||
|  * @link      http://github.com/steeffeen/FancyManiaLinks | ||||
|  * @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder | ||||
|  * @license   http://www.gnu.org/licenses/ GNU General Public License, Version 3 | ||||
|  */ | ||||
| if (!defined('FML_PATH')) { | ||||
| 	define('FML_PATH', __DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR); | ||||
| } | ||||
| if (!defined('FML_VERSION')) { | ||||
| 	define('FML_VERSION', '1.3'); | ||||
| } | ||||
|  | ||||
| /* | ||||
|  * Autoload function that loads FML class files on demand | ||||
|  */ | ||||
| if (!defined('FML_AUTOLOAD_DEFINED')) { | ||||
| 	define('FML_AUTOLOAD_DEFINED', true); | ||||
| 	spl_autoload_register(function ($className) { | ||||
| 		$classPath = str_replace('\\', DIRECTORY_SEPARATOR, $className); | ||||
| 		$filePath  = FML_PATH . $classPath . '.php'; | ||||
| 		if (file_exists($filePath)) { | ||||
| 			require_once $filePath; | ||||
| 		} | ||||
| 	}); | ||||
| } | ||||
		Reference in New Issue
	
	Block a user