本文整理匯總了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;
}
}
}