本文整理汇总了PHP中flexible_table::get_initial_first方法的典型用法代码示例。如果您正苦于以下问题:PHP flexible_table::get_initial_first方法的具体用法?PHP flexible_table::get_initial_first怎么用?PHP flexible_table::get_initial_first使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类flexible_table
的用法示例。
在下文中一共展示了flexible_table::get_initial_first方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: sesskey
echo $OUTPUT->heading($strallparticipants . get_string('labelsep', 'langconfig') . $matchcount . $editlink, 3);
}
}
if ($bulkoperations) {
echo '<form action="action_redir.php" method="post" id="participantsform">';
echo '<div>';
echo '<input type="hidden" name="sesskey" value="' . sesskey() . '" />';
echo '<input type="hidden" name="returnto" value="' . s($PAGE->url->out(false)) . '" />';
}
if ($mode === MODE_USERDETAILS) {
// Print simple listing.
if ($totalcount < 1) {
echo $OUTPUT->heading(get_string('nothingtodisplay'));
} else {
if ($totalcount > $perpage) {
$firstinitial = $table->get_initial_first();
$lastinitial = $table->get_initial_last();
$strall = get_string('all');
$alpha = explode(',', get_string('alphabet', 'langconfig'));
// Bar of first initials.
echo '<div class="initialbar firstinitial">' . get_string('firstname') . ' : ';
if (!empty($firstinitial)) {
echo '<a href="' . $baseurl->out() . '&sifirst=">' . $strall . '</a>';
} else {
echo '<strong>' . $strall . '</strong>';
}
foreach ($alpha as $letter) {
if ($letter == $firstinitial) {
echo ' <strong>' . $letter . '</strong>';
} else {
echo ' <a href="' . $baseurl->out() . '&sifirst=' . $letter . '">' . $letter . '</a>';