Version nueva

This commit is contained in:
2020-11-20 16:21:42 -03:00
parent 09f04263fe
commit aae35fc4d1
67 changed files with 8586 additions and 0 deletions

16
setup/web/setup.php Normal file
View File

@ -0,0 +1,16 @@
<?php
use Psr\Container\ContainerInterface as Container;
return [
Slim\Views\Blade::class => function(Container $container) {
return new Slim\Views\Blade(
$container->get('folders')->templates,
$container->get('folders')->cache,
null,
[
'page_language' => $container->get('language'),
'urls' => $container->get('urls')
]
);
}
];