update de l'application pour le dev de la documentation

This commit is contained in:
Emmanuel ROY 2020-12-18 17:44:09 +01:00
commit 6efdffc05c
31 changed files with 329 additions and 253 deletions

View file

@ -2,28 +2,29 @@
namespace MVC\Classe;
class ModularRegister{
class ModularRegister
{
public $registry = array();
public $index = array();
public function __construct(){
public function __construct()
{
$fichier = file(MODULES_PATH . DIRECTORY_SEPARATOR . "setup" . DIRECTORY_SEPARATOR ."registre.model");
foreach ($fichier as $ligne_num => $ligne) {
if (preg_match("#([ ]*[a-zA-Z0-9-_+éèàùïîç]*)[ ]*[:][ ]*([0-9a-zA-Z-_+ 'éèàùïîç.]*[ ]*)#", $ligne, $matches)) {
$this->registry[$matches[1]] = $matches[2];
$this->index[] = $matches[1];
}
}
}
public function getRegistre(){
public function getRegistre()
{
return $this->registry;
}
public function getIndex(){
public function getIndex()
{
return $this->index;
}
}
}