예제 #1
0
 public static function getInstance()
 {
     if (is_null(self::$instance)) {
         self::$instance = new self();
     }
     return self::$instance;
 }
예제 #2
0
 /**
  * Well, if you want, you can use it as a singleton....
  * @return Autoloader $singleton instance
  */
 public static function getInstance()
 {
     if (self::$instance == null) {
         self::$instance = new Autoloader();
     }
     return self::$instance;
 }
예제 #3
0
 public function run()
 {
     $loader = Autoloader::instance();
     pc($loader, 'loader');
     $ViewClass = $loader->view();
     $view = new $ViewClass();
     $view->render();
 }
예제 #4
0
<?php

/*
 * Lantern-CMS
 */
session_start();
define('LCMS_V', '0.0.1');
define('ABSPATH', __DIR__);
define('PATH_VIEWS', ABSPATH . '/lantern/views');
define('PATH_PLUGINS', ABSPATH . '/lantern/plugins');
define('PATH_CACHE', ABSPATH . '/cache');
// Autoloaders
include 'core/autoloader.php';
include 'vendor/autoload.php';
Autoloader::instance('Core', __DIR__)->register();
// register the core autoloader with spl
Autoloader::instance('Lantern', __DIR__)->register();
// register the plugin autoloader with spl
//include 'services.php';
$url = isset($_GET['url']) ? $_GET['url'] : '/';
$app = new Core\App();
$app->configure(parse_ini_file('config.ini'));
$app->run($url);