Jamm\Autoload\Autoloader::define_home_dir_constant PHP Method

define_home_dir_constant() protected method

Define HOME_DIR - by this constant other modules can check, if autoloader is exists
protected define_home_dir_constant ( )
    protected function define_home_dir_constant()
    {
        if (!defined('HOME_DIR')) {
            $home = explode(DIRECTORY_SEPARATOR, __DIR__);
            $home = DIRECTORY_SEPARATOR . $home[1] . DIRECTORY_SEPARATOR . $home[2];
            define('HOME_DIR', $home, true);
        }
    }