Các bài đăng được tạo bởi Tim Hunt

Hình của Core developers Hình của Documentation writers Hình của Particularly helpful Moodlers Hình của Peer reviewers Hình của Plugin developers

If you are using a recent enough version of Moodle, then go to Users -> Permissions -> User policies, and you can show which user columns are shown in user reports.

(If City is not an option there, then you can set it by hard-coding the setting in config.php.)

Trung bình điểm đánh giá:Useful (2)
Hình của Core developers Hình của Documentation writers Hình của Particularly helpful Moodlers Hình của Peer reviewers Hình của Plugin developers

The quickest way to get your messed up MOODLE_23_STABLE branch back to origin/MOODLE_23_STABLE is (assuming that you are on your MOODLE_23_STABLE branch) to do

git reset --hard origin/MOODLE_23_STABLE

Note that that will remove any uncomitted changes that you have, so you should probably start with

git status

If there are changes you want to keep, then do 

git stash
git reset --hard origin/MOODLE_23_STABLE
git stash pop

Hình của Core developers Hình của Documentation writers Hình của Particularly helpful Moodlers Hình của Peer reviewers Hình của Plugin developers

The event that triggers the email to be sent is when the quiz is submitted, which is either:

  1. when the student clicks Submit all and Finish;
  2. when the countdown timer reaches zero, and automatically submits the quiz; or
  3. (in Moodle 2.3) when the quiz has been set to submit automatically when time expires, and the time has expired.

The email is actually sent the first time cron runs after that event.

Trung bình điểm đánh giá:Useful (2)
Hình của Core developers Hình của Documentation writers Hình của Particularly helpful Moodlers Hình của Peer reviewers Hình của Plugin developers

This is exactly the sort of analysis and thinking that is needed.

I am afraid I have not read through all your analysis in detail yet. (I am, technically on holday at the moment.) but I will read it properly when I get back.

Two things I have concluded so far:

1. To satisfy all the sharing (and then re-editing) use cases Moodle should support, we need some sort of simple versionning scheme. In order to be simple enough, I think that means versionning like wikis, not versionning like git/github, but I might be wrong about that.

2. If we are really trying to solve sharing, then I think the solution should encompas not just sharing within one Moodle site, but also allowing different teachers from different schools to collaborate on a question bank, for example on a Moodle community hub. At least, the mode should be robust and general enough to support that, it would require the admin to enable it, probably.

Trung bình điểm đánh giá:Useful (3)