Note:

If you want to create a new page for developers, you should create it on the Moodle Developer Resource site.

Tutorial: Difference between revisions

From MoodleDocs
m (→‎How to support over 100 languages: brief explanation of language strings.)
m (→‎The skeleton of your plugin: image of directory layout.)
Line 11: Line 11:
==Let's make a plugin==
==Let's make a plugin==
===The skeleton of your plugin===
===The skeleton of your plugin===
[[{{ns:file}}:plugin-skeleton.png]]
===Basic page structure===
===Basic page structure===
===How to support over 100 languages===
===How to support over 100 languages===

Revision as of 06:47, 26 July 2016

Welcome to Moodle development!

This is a tutorial to help you learn how to write plugins for Moodle from start to finish, while showing you how to navigate the most important developer documentation along the way.

PRE-REQUISITES: We assume you are fairly comfortable with PHP in general and that you are able to install a database and web server on your local machine.

Background

Setting up your development environment

The Moodle development framework

What type of plugin are you developing?

Let's make a plugin

The skeleton of your plugin

plugin-skeleton.png

Basic page structure

How to support over 100 languages

  • Language files are stored in the "lang" directory. English strings would be found in "lang/en". Each language contains a file named after the plugin which contains all of the strings. For example the language strings for the assignment activity are found in "mod/assign/lang/en/assign.php".
  • Moodle's default is Australian English. American English is in a separate language pack (en_us).
  • get_string() is used in most cases for displaying text.
  • lang_string() is used in situations where the text may not necessarily be displayed.

links

Add content to your page

Adding your plugin into Moodle's navigation

  • The moodle navigation system has hooks which allows plugins to add links to the navigation menu.
  • hooks are located in lib.php. Try to keep lib.php as small as possible as this file is included on every page. Put classes and functions elsewhere.

links

Database queries

  • Moodle has a generic database query library. Behind this library are additional libraries which allow Moodle to work with MySQL, PostgreSQL, Oracle, SQL Server, and Maria DB.
  • Where possible it is advisable to use the predefined functions rather than write out SQL. Writing SQL has a greater chance of not working with one of the supported databases.

links

Creating your own database tables

  • We create our database tables in Moodle using the XMLDB editor. This is located in the administration block "Site administration | Development | XMLDB editor".
  • The {plugin}\db directory needs to have write access for the XMLDB editor to be most effective.
  • XMLDB editor creates an install.xml file in the db directory. This file will be loaded during the install to create your tables.
  • XMLDB editor will produce php update code for adding and updating moodle database tables.

links

Supporting access permissions: roles, capabilities and contexts

  • Capabilities are controlled in "access.php" under the "db" directory.
  • This file has an array of capabilities with the following:
    • name
    • possible security risks behind giving this capability.
    • The context that this capability works in.
    • The default roles (teacher, manager, student, etc) that have this capability.
    • Various other information.
  • These capabilities are checked in code to allow access to pages, sections, and abilities (saving, deleting, etc).

links

Adding web forms

Maintaining good security

Handling files

Adding Javascript

Adding events and logging

Web Services and AJAX

Using caching to improve performance

Supporting backup and restore

Supporting automated testing

Publishing your plugin

Adding your plugin to moodle.org

Supporting your plugin

TODO

Finishing this tutorial:

  1. About one or two screens for each section with a very generic overview for beginners, containing links to relevant docs WITH COMMENTS ABOUT QUALITY, USEFULNESS, CAVEATS etc.
  2. Go through all the linked pages and make sure they are current and accurate.
  3. Add a worked example to this page, so that each section has suggestions about things to add to the admin tool being built as an exercise. If the code is long, it could be placed on separate pages. A good reference for style is Moodle_Mobile_Developing_a_plugin_tutorial and Blocks.

See also these older tutorials