Неустранимая ошибка: класс 'h1' не найден в /home/iracersr/public_html/atk4/lib/AbstractObject.php в строке 131
Я установил последнюю версию и вот код, который я использую.Есть предложения?
<?php
class page_index extends Page {
function init(){
parent::init();
$p=$this;
//Get Articles
$articles=$this->add('Model_News')->getRows();
$p->add('h1')->set('Latest News');
foreach($articles as $article){
$content=$this->add('view',null,null,array('view/blog'));
$content->template->set('title',$article['title']);
$content->template->set('content',$article['content']);
}
}
}