本文整理汇总了PHP中H::table方法的典型用法代码示例。如果您正苦于以下问题:PHP H::table方法的具体用法?PHP H::table怎么用?PHP H::table使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类H
的用法示例。
在下文中一共展示了H::table方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: index
public function index()
{
$pages = $this->load->model('pages', false);
$result = $pages->getList(array("type != 'trash'"), 'id DESC', 10);
$rows = array();
foreach ($result as $row) {
$rows[] = array(H::link($row['title'], '//' . $this->base . '/' . $row['fullpath'], 'target="_blank"'), tDate($this->locale, 'd M Y', $row['cdate']), H::link(t('edit'), '?route=pages/edit&type=' . $row['type'] . '&id=' . $row['id'], 'class="btn btn-default btn-xs"'));
}
$this->title = t('widget_lastpages');
$this->content = H::table($rows, array(), 'class="table lastpages"');
$this->style = ".lastpages td:nth-child(1){max-width:200px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;}.lastpages td:nth-child(2){width:100px;}.lastpages td:nth-child(3){text-align:right;width:80px;}";
$this->wrap_body = false;
return $this->render();
}