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


PHP UserUtils::clear_student_modules_by_userID方法代码示例

本文整理汇总了PHP中UserUtils::clear_student_modules_by_userID方法的典型用法代码示例。如果您正苦于以下问题:PHP UserUtils::clear_student_modules_by_userID方法的具体用法?PHP UserUtils::clear_student_modules_by_userID怎么用?PHP UserUtils::clear_student_modules_by_userID使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在UserUtils的用法示例。


在下文中一共展示了UserUtils::clear_student_modules_by_userID方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: strtoupper

            echo "<table border=\"0\" style=\"padding-bottom:5px; width:100%; color:#1E3287\"><tr><td><nobr>&nbsp;" . strtoupper(substr($moduleid, 0, 1)) . "</nobr></td><td style=\"width:98%\"><hr noshade=\"noshade\" style=\"border:0px; height:1px; color:#E5E5E5; background-color:#E5E5E5; width:100%\" /></td></tr></table>\n";
        }
        if (isset($student_mod[$idMod]) and $student_mod[$idMod]['attempt'] == $id) {
            echo "<div class=\"r2\" id=\"divmod" . $id . "_" . $loop . "\"><input type=\"checkbox\" onclick=\"toggle('divmod" . $id . "_" . $loop . "')\" name=\"mod" . $id . "_" . $loop . "\" id=\"mod" . $id . "_" . $loop . "\" value=\"" . $idMod . "\" checked />&nbsp;<label for=\"mod" . $id . "_" . $loop . "\">{$moduleid}:&nbsp;{$fullname}</label></div>\n";
        } else {
            echo "<div class=\"r1\" id=\"divmod" . $id . "_" . $loop . "\"><input type=\"checkbox\" onclick=\"toggle('divmod" . $id . "_" . $loop . "')\" name=\"mod" . $id . "_" . $loop . "\" id=\"mod" . $id . "_" . $loop . "\" value=\"" . $idMod . "\" />&nbsp;<label for=\"mod" . $id . "_" . $loop . "\">{$moduleid}:&nbsp;{$fullname}</label></div>\n";
        }
        $loop++;
        $old_letter = strtoupper(substr($moduleid, 0, 1));
    }
    echo "</div>\n</div>\n";
}
if (isset($_POST['submit'])) {
    for ($attempt = 1; $attempt <= 3; $attempt++) {
        // Clear the student of all modules.
        UserUtils::clear_student_modules_by_userID($_POST['userID'], $_POST['session'], $attempt, $mysqli);
        // Insert a record for each module.
        for ($i = 0; $i <= $_POST['mod_count']; $i++) {
            if (isset($_POST['mod' . $attempt . '_' . $i]) and $_POST['mod' . $attempt . '_' . $i] != '') {
                UserUtils::add_student_to_module($_POST['userID'], $_POST['mod' . $attempt . '_' . $i], $attempt, $_POST['session'], $mysqli, 0);
            }
        }
    }
    ?>
<!DOCTYPE html>
<html>
<head>
  <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  <meta http-equiv="content-type" content="text/html;charset=<?php 
    echo $configObject->get('cfg_page_charset');
    ?>
开发者ID:vinod-co,项目名称:centa,代码行数:31,代码来源:edit_modules_popup.php


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