Skip to content

Instantly share code, notes, and snippets.

@ischenkodv
Created May 18, 2009 11:30
Show Gist options
  • Save ischenkodv/113424 to your computer and use it in GitHub Desktop.
Save ischenkodv/113424 to your computer and use it in GitHub Desktop.
<?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