/
vagan
/
Framework
Обзор
Документация
Войти
/
vagan
/
Framework
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
application/controllers/AccountController.php
27 строк
625 B
Vagan
End of framework development
01 мар 2021, 15:25
01 мар 2021, 15:25
a241e9e
Код
Авторство
О чём код?
<?php namespace application\controllers; use application\core\Controller; class AccountController extends Controller { // public function before() { // $this->view->layout = 'custom'; // } public function loginAction() { //$this->view->redirect('/Framework/'); if(!empty($_POST)) { $this->view->massage('error', 'Ошибка'); } $this->view->render('логин'); } public function registerAction() { //$this->view->path = 'test/test' chang path $this->view->render('Страница регистрации'); } }