initial commit

This commit is contained in:
Emmanuel ROY 2019-08-09 08:39:02 +02:00
commit a2fa15986d
1605 changed files with 120566 additions and 0 deletions

View file

@ -0,0 +1,9 @@
<?php
namespace MVC\Classe;
class ModularApp{
public static function load($name){
require MODULES_PATH . DIRECTORY_SEPARATOR . "setup" . DIRECTORY_SEPARATOR . $name . ".twig.class.php";
}
}