-

Note: You are currently viewing documentation for Moodle 3.10. Up-to-date documentation for the latest stable version of Moodle may be available here: Dataform System events.

Dataform System events: Difference between revisions

From MoodleDocs
No edit summary
(4 intermediate revisions by the same user not shown)
Line 7: Line 7:


==Activity==
==Activity==
<!--
{| class="nicetable"  style="background-color:inherit;"   
{| class="nicetable"  style="background-color:inherit;"   
{{ Dataform system event table row |  | course_module_viewed | The activity has been displayed. }}
{{ Dataform system event table row |  | course_module_viewed | The activity has been displayed. }}
{{ Dataform system event table row |  | course_module_instance_list_viewed | The Dataform index has been viewed. }}
{{ Dataform system event table row |  | course_module_instance_list_viewed | The Dataform index has been viewed. }}
|}
|}  
-->
 
==View==
==View==
{| class="nicetable"  style="background-color:inherit;"   
{| class="nicetable"  style="background-color:inherit;"   
Line 16: Line 19:
{{Dataform system event table row |  | view_updated | A view has been updated in the activity. }}
{{Dataform system event table row |  | view_updated | A view has been updated in the activity. }}
{{Dataform system event table row |  | view_deleted | A view has been deleted from the activity. }}
{{Dataform system event table row |  | view_deleted | A view has been deleted from the activity. }}
{{Dataform system event table row |  | view_accessed | A view has been displayed. }}
{{Dataform system event table row |  | view_viewed | A view has been displayed. }}
|}
|}
==Field==
==Field==
Line 30: Line 33:
{{Dataform system event table row |  | filter_updated | A filter has been updated in the activity. }}
{{Dataform system event table row |  | filter_updated | A filter has been updated in the activity. }}
{{Dataform system event table row |  | filter_deleted | A filter has been deleted from the activity. }}
{{Dataform system event table row |  | filter_deleted | A filter has been deleted from the activity. }}
{{Dataform system event table row |  | filter_applied | A filter has been applied in the activity. }}
|}
==Rule==
The standard Dataform supports two types of rules: Access and Notification.
{| class="nicetable"  style="background-color:inherit;" 
{{Dataform system event table row |  | rule_created | A rule has been added to the activity. }}
{{Dataform system event table row |  | rule_updated | A rule has been updated in the activity. }}
{{Dataform system event table row |  | rule_deleted | A rule has been deleted from the activity. }}
|}
|}
==Entry==
==Entry==

Revision as of 00:55, 8 April 2014


The Dataform system events are triggered with attached data during the activity, at moments that may be of interest and worth capturing for various purposes (e.g. logging, notifications). You can capture these events in your existing custom module or create a designated plugin (e.g. block, local) for that.

Add-on views and fields may provide further event triggers.

Activity

View

view_created

A view has been added to the activity.

view_updated

A view has been updated in the activity.

view_deleted

A view has been deleted from the activity.

view_viewed

A view has been displayed.

Field

field_created

A field has been added to the activity.

field_updated

A field has been updated in the activity.

field_deleted

A field has been deleted from the activity.

field_content_updated

The entry content of a field has been updated.

Filter

filter_created

A filter has been added to the activity.

filter_updated

A filter has been updated in the activity.

filter_deleted

A filter has been deleted from the activity.

Entry

entry_created

An entry has been added to the activity.

entry_updated

An entry has been updated in the activity.

entry_deleted

An entry has been deleted from the activity.

Other

comment_created

A comment has been added to an entry in the activity.

comment_deleted

A comment has been deleted from an entry in the activity.

rating_created

A rating has been added to an entry in the activity.

rating_deleted

A rating has been deleted from an entry in the activity.

See also

Event 2