<?php
/*
* Контроллер главной страницы
*/
class IndexController extends Controller
{
/*
* Отображение главной страницы
*/
public function actionIndex ()
{
$this->render ('index', array (
'categoryProvider' => Category::model ()->loadCategories (),
'countDrafts' => Post::model ()->getCountDrafts (),
'postProvider' => Post::model ()->loadLastPosts (),
'tagProvider' => Tag::model ()->loadTags ()
));
}
}