<?php
class IndexController extends Controller
{
/**
* Действие по умолчанию - вывоим каталог товаров.
*/
static function actionIndex()
$category = new Category();
self::render('indexTemplate.php', array(
'category' => $category->getAll(),
));
}