Вход Регистрация
Файл: protected/controllers/IndexController.php
Строк: 13
<?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 ()
        ));
    }
}
Онлайн: 0
Реклама