本文整理汇总了PHP中core_renderer::heading方法的典型用法代码示例。如果您正苦于以下问题:PHP core_renderer::heading方法的具体用法?PHP core_renderer::heading怎么用?PHP core_renderer::heading使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类core_renderer
的用法示例。
在下文中一共展示了core_renderer::heading方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: heading
/**
* Produces a heading
*
* @param string $text
* @param int $level
* @param string $classes
* @param string $id
* @return string
*/
public function heading($text, $level = 2, $classes = 'main', $id = null) {
if ($classes == 'helpheading') {
// Keeps wrap from help headings in dialog.
$content = parent::heading($text, $level, $classes, $id);
} else {
$content = html_writer::start_tag('div', array('class' => 'headingwrap ui-bar-'.$this->theme_swatch() .' ui-footer'));
$content .= parent::heading($text, $level, $classes.' ui-title', $id);
$content .= html_writer::end_tag('div');
}
return $content;
}
示例2: VARCHAR
}
}
$orderby = 'tree,weight,modtext';
if ($DB->get_dbfamily() == 'mssql' || $DB->get_dbfamily() == 'oracle') {
// SQL Server and Oracle do not support ordering by TEXT field.
$orderby = 'tree,weight,CAST(modtext AS VARCHAR(255))';
}
$items = $DB->get_records(sharing_cart\record::TABLE, array('userid' => $USER->id), $orderby);
$title = get_string('bulkdelete', 'block_sharing_cart');
$PAGE->set_pagelayout('standard');
$PAGE->set_url('/blocks/sharing_cart/bulkdelete.php', array('course' => $courseid));
$PAGE->set_title($title);
$PAGE->set_heading($title);
$PAGE->navbar->add(get_string('pluginname', 'block_sharing_cart'))->add($title, '');
echo $OUTPUT->header();
echo $OUTPUT->heading($title);
echo '
<div style="width:100%; text-align:center;">';
if (empty($items)) {
echo '
<div>
<input type="button" onclick="history.back();" value="', get_string('back'), '" />
</div>';
} else {
echo '
<script type="text/javascript">
//<![CDATA[
function get_checks()
{
var els = document.forms["form"].elements;
var ret = new Array();