本文整理汇总了PHP中UI::page_header方法的典型用法代码示例。如果您正苦于以下问题:PHP UI::page_header方法的具体用法?PHP UI::page_header怎么用?PHP UI::page_header使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UI
的用法示例。
在下文中一共展示了UI::page_header方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __
<?php
echo UI::page_header(__('Available Classes'));
?>
<input type="text" placeholder="<?php
echo __('Filter');
?>
" class="form-control" name="search" id="api-filter-box">
<script type="text/javascript">
$.fn.extend({
filter_content: function(search){
var search_regex = new RegExp(search, 'gi');
// Run through each .class definition
$('.panel', this).each(function(k, container){
if (search == '') {
// If search box is empty show everything without doing any regex
$(container).show();
$('li', container).show();
// Continue
return true;
}
//
// Run through every anchor
$('a', $(container)).each(function(k, anchor){
// Keep track of the li
var $parent = $(anchor).closest('li');
示例2:
echo $breadcrumbs;
?>
<div class="row">
<div class="col-md-3">
<div id="kodoc-topics" class="panel">
<?php
echo $menu;
?>
</div>
</div>
<div class="col-md-9">
<?php
if (!empty($title)) {
?>
<?php
echo UI::page_header($title);
?>
<?php
}
?>
<?php
echo $content;
?>
<div class="clearfix"></div>
</div>
</div>
<?php
echo $footer;
?>