本文整理汇总了PHP中History::get方法的典型用法代码示例。如果您正苦于以下问题:PHP History::get方法的具体用法?PHP History::get怎么用?PHP History::get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类History
的用法示例。
在下文中一共展示了History::get方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getHistory
/**
* Get Query history
*
* @return array SQL sentense and Binded data in array
*/
public function getHistory()
{
return $this->history->get();
}
示例2: breadcrumbs
public static function breadcrumbs($data = array(), $w = null)
{
if (!empty($data)) {
$buffer = "<ul class='breadcrumbs'>";
foreach ($data as $entry) {
$buffer .= "<li" . ($entry !== end($data) ? "><a href='" . $entry['link'] . "'>" . $entry['name'] . "</a>" : " class='current'>" . $entry['name']) . "</li>";
}
$buffer .= "</ul>";
return $buffer;
} else {
// Try and make breadcrumbs from the history class
if (class_exists("History")) {
$breadcrumbs = History::get();
$buffer = "<ul class='cmfive_breadcrumbs '>";
$buffer .= "<li><i class='fi-clock'></i></li>";
if (!empty($breadcrumbs)) {
$isFirst = true && $_SERVER['REQUEST_URI'] === key($breadcrumbs);
foreach ($breadcrumbs as $path => $value) {
if (!empty($w) && $w instanceof Web) {
if (!$w->Auth->allowed($path)) {
continue;
}
}
$buffer .= "<li" . (!$isFirst ? "><a href='" . $path . "'>" . $value['name'] . "</a>" : " class='current'>" . $value['name']) . "</li>";
$isFirst = false;
}
} else {
$buffer .= "<li>Your history will appear here</li>";
}
$buffer .= "</ul>";
return $buffer;
}
}
}