当前位置: 首页>>代码示例>>PHP>>正文


PHP flexible_table::get_initial_first方法代码示例

本文整理汇总了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() . '&amp;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() . '&amp;sifirst=' . $letter . '">' . $letter . '</a>';
开发者ID:educakanchay,项目名称:campus,代码行数:31,代码来源:index.php


注:本文中的flexible_table::get_initial_first方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。