Activity completion FAQ: Różnice pomiędzy wersjami

Z MoodleDocs
Skocz do:nawigacja, szukaj
(Created page with "{{Activity completion}} <p class="note">'''Please refer to these notes before editing this page.'''</p>")
 
(copied from 2.5 docs)
 
(Nie pokazano 8 wersji utworzonych przez 4 użytkowników)
Linia 1: Linia 1:
{{Activity completion}}
{{Activity completion}}
<p class="note">'''Please refer to [[Page_notes#Activity completion|these notes]] before editing this page.'''</p>
==What happens when completion conditions are unlocked?==
 
Once you unlock options and then click 'Save changes', all completion information for the activity will be deleted and, if possible, regenerated according to the new settings. See the section 'What happens when you unlock' in [[Activity completion settings]] for further details.
 
==Activity completion status does not change==
Has [[Cron]] been run on the server side? Activity completion default is to be trigger by a cron event at a regular interval. The default is 10 minutes.
 
:Why so long a gap? My students want instant gratification and positive reinforcement they have taken another step! The update on a site can take time and resources of the server because it looks at every course, every activity, every user.
 
==How do I change the default time to refresh course completion reports==
Want to change the default time? This will require a code tweak at line 126 or so in the /lib/completionlib.php file. Make sure the server is sending a cron message to Moodle every 10 minutes or more often.  If the server is sending a cron trigger to Moodle every 60 minutes, that will be the length of time which will pass before the change will appear.
 
==Can I move the activity completion checkboxes to the left instead of the right?==
 
[[File:checkboxleft.png]]
 
 
If you are using Formal white theme, add the following to the Custom CSS box in ''Appearance>Themes>Formal white''
 
/* Completion Checkbox Left of Activity Icon */
.path-course-view li.activity span.autocompletion, .path-course-view li.activity form.togglecompletion { right: auto; left: 0; }
/* Align Checkboxes Full Left */
.path-course-view li.activity div.mod-indent-1 span.autocompletion { margin-left: -30px; }
/* Small Space Between Checkbox & Icon */
.path-course-view .section .activity img.activityicon { padding-left: 1em; }
 
(Thanks to Christian Herman for this tip)
 
 
[[Category:FAQ]]
 
[[de:Aktivitätsabschluss FAQ]]

Aktualna wersja na dzień 20:35, 17 kwi 2013

What happens when completion conditions are unlocked?

Once you unlock options and then click 'Save changes', all completion information for the activity will be deleted and, if possible, regenerated according to the new settings. See the section 'What happens when you unlock' in Activity completion settings for further details.

Activity completion status does not change

Has Cron been run on the server side? Activity completion default is to be trigger by a cron event at a regular interval. The default is 10 minutes.

Why so long a gap? My students want instant gratification and positive reinforcement they have taken another step! The update on a site can take time and resources of the server because it looks at every course, every activity, every user.

How do I change the default time to refresh course completion reports

Want to change the default time? This will require a code tweak at line 126 or so in the /lib/completionlib.php file. Make sure the server is sending a cron message to Moodle every 10 minutes or more often. If the server is sending a cron trigger to Moodle every 60 minutes, that will be the length of time which will pass before the change will appear.

Can I move the activity completion checkboxes to the left instead of the right?

checkboxleft.png


If you are using Formal white theme, add the following to the Custom CSS box in Appearance>Themes>Formal white

/* Completion Checkbox Left of Activity Icon */
.path-course-view li.activity span.autocompletion, .path-course-view li.activity form.togglecompletion { right: auto; left: 0; }
/* Align Checkboxes Full Left */
.path-course-view li.activity div.mod-indent-1 span.autocompletion { margin-left: -30px; }
/* Small Space Between Checkbox & Icon */ 
.path-course-view .section .activity img.activityicon { padding-left: 1em; }

(Thanks to Christian Herman for this tip)