2012-04-30 20:58:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-11 09:58:15 +00:00
|
|
|
* PrivateBin
|
2012-04-30 20:58:08 +00:00
|
|
|
*
|
|
|
|
* a zero-knowledge paste bin
|
|
|
|
*
|
2016-07-11 09:58:15 +00:00
|
|
|
* @link https://github.com/PrivateBin/PrivateBin
|
2012-04-30 20:58:08 +00:00
|
|
|
* @copyright 2012 Sébastien SAUVAGE (sebsauvage.net)
|
|
|
|
* @license http://www.opensource.org/licenses/zlib-license.php The zlib/libpng License
|
2015-11-09 20:39:42 +00:00
|
|
|
* @version 0.22
|
2012-04-30 20:58:08 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
spl_autoload_register('auto::loader');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* auto
|
|
|
|
*
|
|
|
|
* provides autoloading functionality
|
|
|
|
*/
|
|
|
|
class auto
|
|
|
|
{
|
|
|
|
/**
|
2016-07-06 12:12:14 +00:00
|
|
|
* includes file for given class name
|
2012-04-30 20:58:08 +00:00
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @static
|
2016-07-06 12:12:14 +00:00
|
|
|
* @param string $class_name
|
2012-04-30 20:58:08 +00:00
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public static function loader($class_name)
|
|
|
|
{
|
2012-08-25 22:49:11 +00:00
|
|
|
$filename = PATH . 'lib/' . str_replace('_', '/', $class_name) . '.php';
|
|
|
|
if(is_readable($filename)) {
|
|
|
|
return include $filename;
|
|
|
|
}
|
|
|
|
return false;
|
2012-04-30 20:58:08 +00:00
|
|
|
}
|
|
|
|
}
|