コード例 #1
0
ファイル: index.php プロジェクト: germanocorrea/carometro
<?php

include_once 'inc/classCaller.php';
$layout = new Layout();
$layout->get_header();
$layout->get_content('front-page', 'Envie sua foto');
$layout->get_footer();
コード例 #2
0
ファイル: add.php プロジェクト: germanocorrea/carometro
<?php

include_once 'inc/classCaller.php';
$layout = new Layout();
$layout->get_header(true);
$layout->get_content('add-page', 'Editar Texto da Página Inicial');
$layout->get_footer();
コード例 #3
0
ファイル: admin.php プロジェクト: germanocorrea/carometro
<?php

include_once 'inc/classCaller.php';
$layout = new Layout();
$layout->get_header(false, true);
$layout->get_content('login-page', 'Login');
$layout->get_footer();
コード例 #4
0
ファイル: cursos.php プロジェクト: germanocorrea/carometro
<?php

include_once 'inc/classCaller.php';
$layout = new Layout();
$layout->get_header(true);
$layout->get_content('cursos-page', 'Cursos');
$layout->get_footer();
コード例 #5
0
ファイル: turma.php プロジェクト: germanocorrea/carometro
<?php

include_once 'inc/classCaller.php';
$layout = new Layout();
$layout->get_header(true);
$layout->get_content('turma-page', $_GET['turma'], true);
$layout->get_footer();