Blame view

src/Template/Pages/home.ctp 187 Bytes
4260780b   Alexandre   Migration vue, co...
1
2
3
4
5
<?php 

use Cake\Core\Configure;

//if (Configure::read('debug')) {
19798ef9   Alexandre   Mode_install, maj...
6
7
if ($this->request->session()->read('install')) {
	include("home_install.ctp");
4260780b   Alexandre   Migration vue, co...
8
9
10
11
12
}
else {
	include("home_app.ctp");
}
?>