本文整理汇总了PHP中Layout::entriesLayout方法的典型用法代码示例。如果您正苦于以下问题:PHP Layout::entriesLayout方法的具体用法?PHP Layout::entriesLayout怎么用?PHP Layout::entriesLayout使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Layout
的用法示例。
在下文中一共展示了Layout::entriesLayout方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Layout
<?php
require '../load.php';
$response = Entries::getAll('beto');
$tpl = new Layout();
$data = array();
if ($response['success'] == true) {
$data['entries'] = $response['data'];
} else {
$data['msg'] = $response['msg'];
}
echo $tpl->entriesLayout($tpl->loadTemplate('index', $data));
示例2: Layout
<?php
require '../load.php';
$response = Entries::get($_GET['id']);
$tpl = new Layout();
$data = array();
if ($response['success'] == true) {
$data['entries'] = $response['data'];
} else {
$data['msg'] = $response['msg'];
}
echo $tpl->entriesLayout($tpl->loadTemplate('post', $data));
示例3: setNotification
<?php
require 'load.php';
$entry = Entries::get($_GET['id']);
if (!$entry->success) {
setNotification('error', $entry->msg);
redirect('index.php');
}
$tpl = new Layout();
echo $tpl->entriesLayout($tpl->loadTemplate('post', array('post' => $entry->data)));