Frankenstyle: Difference between revisions
No edit summary |
m (→Plugin types) |
||
Line 27: | Line 27: | ||
| report | | report | ||
| /admin/report | | /admin/report | ||
|- | |- | ||
| Assignments | | Assignments | ||
Line 83: | Line 79: | ||
| gradereport | | gradereport | ||
| /grade/report | | /grade/report | ||
|- | |||
| Grading methods | |||
| gradingform | |||
| /grade/grading/form | |||
|- | |- | ||
| Local plugins | | Local plugins |
Revision as of 07:43, 5 December 2011
'Frankenstyle component names' refers to the naming convention that is used to uniquely identify a Moodle plugin based on the type of plugin and its name. They are used throughout the Moodle code (with a notable exception being the css class names in the themes).
Martin Dougiamas invented the word 'frankenstyle' to describe this naming system which was invented by Petr Skoda.
Format
Frankenstyle component names have a prefix and then a folder name, separated by an underscore.
- The prefix is determined by the type of plugin. For example, the prefix for an activity module is mod.
- The name is the folder name of the plugin, always lower case. For example, the name for Quiz is quiz.
So the frankenstyle component name for the quiz module is mod_quiz.
Plugin types
Plugin type | Frankenstyle prefix | Moodle path |
---|---|---|
Activity modules | mod | /mod |
Admin reports | report | /admin/report |
Assignments | assignment | /mod/assignment/type |
Authentication plugins | auth | /auth |
Blocks | block | /blocks |
Course formats | format | /course/format |
Course reports | coursereport | /course/report |
Database field types | datafield | /mod/data/field |
Database presets | datapreset | /mod/data/preset |
Editors | editor | /lib/editor |
Enrolment plugins | enrol | /enrol |
Filters | filter | /filter |
Grade export plugins | gradeexport | /grade/export |
Grade import plugins | gradeimport | /grade/import |
Grade reports | gradereport | /grade/report |
Grading methods | gradingform | /grade/grading/form |
Local plugins | local | /local |
Messaging consumers | message | /message/output |
Mnet services | mnetservice | /mnet/service |
Plagiarism plugins | plagiarism | /plagiarism |
Portfolio plugins | portfolio | /portfolio |
Question behaviours | qbehaviour | /question/behaviour |
Question formats | qformat | /question/format |
Question types | qtype | /question/type |
Quiz reports | quiz | /mod/quiz/report |
Repository plugins | repository | /repository |
SCORM reports | scormreport | /mod/scorm/report |
Themes | theme | /theme |
User profile fields | profilefield | /user/profile/field |
Webservice protocols | webservice | /webservice |
Workshop allocation strategies | workshopallocation | /mod/workshop/allocation |
Workshop evaluation plugins | workshopeval | /mod/workshop/eval |
Workshop grading forms | workshopform | /mod/workshop/form |
To get a definitive list in your version of Moodle 2.x, use a small Moodle script with print_object(get_plugin_types());.
Usage
Frankenstyle component names are used in:
Table names
All table names for a plugin must begin with its frankenstyle name (after the standard Moodle table prefix).
(The exception to this rule is Moodle activities which (for historical reasons) do not have mod_ in front of the plugin name)
Examples: mdl_local_coolreport, mdl_local_coolreport_users
Capabilities
All capabilities for a plugin use the frankenstyle name, except with a / instead of a _.
Example: mod/quiz:viewattempt
Language files
The main language file for each plugin (with the notable exception of activity modules) is the frankenstyle component name.
Examples: /blocks/participants/lang/en/block_participants.php
Renderers
Other places (TODO)
Please add more as they come up.