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


PHP GradebookUtils::block_students方法代码示例

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


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

示例1: die

if ($course_to_crsind && !isset($_GET['confirm'])) {
    GradebookUtils::block_students();
    if (!isset($_GET['movecat']) && !isset($_GET['moveeval'])) {
        die('Error: movecat or moveeval not defined');
    }
    $button = '<form name="confirm"
					 method="post"
					 action="' . api_get_self() . '?confirm=' . (isset($_GET['movecat']) ? '&movecat=' . Security::remove_XSS($_GET['movecat']) : '&moveeval=' . Security::remove_XSS($_GET['moveeval'])) . '&selectcat=' . Security::remove_XSS($_GET['selectcat']) . '&targetcat=' . Security::remove_XSS($_GET['targetcat']) . '">
			   <input type="submit" value="' . '  ' . get_lang('Ok') . '  ' . '">
			   </form>';
    $warning_message = get_lang('MoveWarning') . '<br><br>' . $button;
    $filter_warning_msg = false;
}
//actions on the sortabletable
if (isset($_POST['action'])) {
    GradebookUtils::block_students();
    $number_of_selected_items = count($_POST['id']);
    if ($number_of_selected_items == '0') {
        $warning_message = get_lang('NoItemsSelected');
        $filter_warning_msg = false;
    } else {
        switch ($_POST['action']) {
            case 'deleted':
                $number_of_deleted_categories = 0;
                $number_of_deleted_evaluations = 0;
                $number_of_deleted_links = 0;
                foreach ($_POST['id'] as $indexstr) {
                    if (api_substr($indexstr, 0, 4) == 'CATE') {
                        $cats = Category::load(api_substr($indexstr, 4));
                        if ($cats[0] != null) {
                            $cats[0]->delete_all();
开发者ID:secuencia24,项目名称:chamilo-lms,代码行数:31,代码来源:gradebook.php


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