Created
May 18, 2009 11:30
-
-
Save ischenkodv/113424 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php $this->table()->setCaption('Список записей') | |
->setAttributes(array('class' => 'mytable', 'id' => 'postsList')) | |
->setFooter('<a href="/admin/blog/create">Создать новую запись</a>') | |
->setColumns(array('title' => 'Название','post_author' => 'Автор','edit_options' => '')) | |
->setCellContent('<a href="/admin/blog/edit?id={id}">Редактировать</a>', 'edit_options') | |
->setEmptyRowContent('Пока нет ни одной записи') | |
->setRows($this->posts); ?> | |
<?= $this->table() ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment