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

时间:2016-03-19 23:45:11

标签: plugins block moodle

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

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

  • 显示管理员用户的,但不会为学生显示
  • 如何仅在选定的quizes上显示块i:e数学而不是英语quizes

    CODE:

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 个答案:

答案 0 :(得分:0)

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

步骤:

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