/
vagan
/
Blog
Обзор
Документация
Войти
/
vagan
/
Blog
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Controllers/Home.php
35 строк
876 B
Vagan
various fixes
19 фев 2021, 19:59
19 фев 2021, 19:59
e1e2394
Код
Авторство
О чём код?
<?php namespace Controllers; use Views\View; class Home { private $name; private $view; private $title; public function __construct() { $this->view = new View(DIR_APP . 'Views/Default/Home'); } public function home() { $this->title = 'Статьи блога'; $articles = [ ['name' => 'Первая статья', 'text' => 'Текст первой статьи'], ['name' => 'Вторая статья', 'text' => 'Текст второй статьи'] ]; $this->view->render('Home.tpl', ['title' => $this->title, 'articles' => $articles]); } public function welcome($name) { $this->title = 'Приветствуем тебя, ' . $name; $this->view->render('Welcome.tpl', ['title' => $this->title,'name' => $name]); } }