Dataform System events

From MoodleDocs


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