测验尝试页面上每个角色的Moodle块可见性

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了测验尝试页面上每个角色的Moodle块可见性相关的知识,希望对你有一定的参考价值。

我一直在成功地关注this教程并创建了一个小的自定义块。

我需要这个块显示在maths quiz / attempt.php页面上,但我有两个问题。

  • 该块显示为admin用户,但不显示给学生
  • 如何仅在选定的测验中显示块:e数学而不是英语测验 码:

class block_customfeedback extends block_base {
    public function init() {
        $this->title = get_string('customfeedback', 'block_customfeedback');
    }

    public function get_content() {
        if ($this->content !== null) {
          return $this->content;
        }

        $form .= "<form action='http://www.remoteserver.com/response.php' method='post'>";
        $form .= "<label>Question ID</label>    <input name='QuestionID' id='questionid' type='text' />";
        $form .= "<label>Quiz Name</label>      <input name='QuizName' id='quizname' type='text' />";
        $form .= "<label>Your Feedback</label>  <textarea name='Feedback' id='feedback' type='text' ></textarea>";
        $form .= "<input type='submit' value='Submit' />";
        $form .= "</form>";

        $this->content         =  new stdClass;
        $this->content->text   = $form;
        // $this->content->footer = 'Footer here...';

        return $this->content;
    }

    public function applicable_formats() {
        return array(
            'all'   => true
        );
    }

} // close class
答案

您可以在测验尝试页面上显示您的块。

脚步:

  1. 转到您的测验设置页面。
  2. 点击外观
  3. 点击显示更多
  4. 将“在测验尝试期间显示块”的值更改为“是”。

现在登录学生并检查。

以上是关于测验尝试页面上每个角色的Moodle块可见性的主要内容,如果未能解决你的问题,请参考以下文章

通过moodle中的用户ID获取用户角色

Drupal块可见性:在论坛上显示

循环访问 MS Access 子窗体并获取列可见性

Drupal块可见性:在博客和论坛上显示

块处理程序中变量的可见性(范围)

安装moodle出现问题!建立了数据库,开始一切顺利,但是第一张图片之后就成了第二张图片。页面无任何显示