SAND-framework/application/class/application.class.php
2019-03-05 16:49:15 +01:00

26 lines
591 B
PHP

<?php
define( "CONTROLLERS_PATH" , APPLICATION_PATH . DIRECTORY_SEPARATOR . "include" . DIRECTORY_SEPARATOR . "controlleurs");
require CLASSES_PATH.DIRECTORY_SEPARATOR."url.class.php";
require CLASSES_PATH.DIRECTORY_SEPARATOR."controlleur.class.php";
require CLASSES_PATH.DIRECTORY_SEPARATOR."bdd.class.php";
require APPLICATION_PATH . DIRECTORY_SEPARATOR . "parameters.php";
class Application
{
public $url;
public function __construct(){
$this->url = new Url();
}
public function launch(){
$controlleur = new Controlleur($this);
print( $controlleur->vue->ecran );
}
}