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
(Fleshing out a few sections at once.)
m (Workflow, security, handling files)
Line 7: Line 7:
==Background==
==Background==
===Setting up your development environment===
===Setting up your development environment===
* Install Git.
* Clone Moodle.
* Create branches and push to a public repository such as github.
links
* https://docs.moodle.org/dev/Git_for_developers
===The Moodle development framework===
===The Moodle development framework===
===What type of plugin are you developing?===
===What type of plugin are you developing?===
* Moodle has lots of different types of plugins.
* There are 24 different categories of plugin listed on the moodle plugin database. Before starting check here to see if someone else has not already created what you are looking for. Perhaps you could contribute to their plugin instead of creating a new one.
links
* https://moodle.org/plugins/index.php
* https://docs.moodle.org/dev/Plugin_types
==Let's make a plugin==
==Let's make a plugin==
===The skeleton of your plugin===
===The skeleton of your plugin===
Line 132: Line 148:


===Maintaining good security===
===Maintaining good security===
* Cross site scripting
* sql injection
links
*
===Handling files===
===Handling files===
* Use the file manager.
links
* https://docs.moodle.org/dev/File_API
* https://docs.moodle.org/dev/File_API_internals
* https://docs.moodle.org/dev/Using_the_File_API_in_Moodle_forms
===Adding Javascript===
===Adding Javascript===
* Moodle is currently using jquery and AMD (Asynchronous Module Definition).
* Moodle is currently using jquery and AMD (Asynchronous Module Definition).

Revision as of 22:58, 27 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

  • Install Git.
  • Clone Moodle.
  • Create branches and push to a public repository such as github.

links

The Moodle development framework

What type of plugin are you developing?

  • Moodle has lots of different types of plugins.
  • There are 24 different categories of plugin listed on the moodle plugin database. Before starting check here to see if someone else has not already created what you are looking for. Perhaps you could contribute to their plugin instead of creating a new one.

links

Let's make a plugin

The skeleton of your plugin

plugin-skeleton.png This image shows directories and files that you will find in most plugins.

  • plugin would actually be the name of your plugin. This also applies to the file in "lang/en/".
  • classes contains classes used in your plugin.
  • db has database related files and also capabilities (access.php).
  • lang The language directory.
  • lib.php base library file for some hooks and callbacks.
  • version.php contains bare basic information about the plugin.

links

Basic page structure

  • For a page that is displaying content to a user we have the following sections:
    • Required files.
    • POST and GET variables retrieved using required_param and optional_param.
    • context.
    • navigation setup.
    • title, headings, headers.
    • content.
    • footers.

links

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

  • Content for a page is added through renderers.
  • Renderers are typically stored in the "classes/output" directory.
  • Putting content in renderers allows themers to override the visual display of the content.
  • Very basic information is presented using the html_writer class.
  • In most cases templates should be used.
  • templates are stored in the "templates" directory. The templates use mustache files.
  • Mustache files allow for more generic html with placeholders inserted, that inserts the data (context) at run time.

links

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

  • Moodle has it's own forms library.
  • The forms lib includes a lot of accessibility code, and error checking, by default.
  • Moodle forms can be displayed in JavaScript using 'fragments'.

links

Maintaining good security

  • Cross site scripting
  • sql injection

links

Handling files

  • Use the file manager.


links

Adding Javascript

  • Moodle is currently using jquery and AMD (Asynchronous Module Definition).
  • JavaScript files are located in the "amd/src" directory.
  • Use grunt to build your JavaScript.
  • Include your JavaScript in php files as follows:

$this->page->requires->js_call_amd('{JScriptfilename}');

  • Can also be included in mustache templates.

links

Adding events and logging

  • All logging in moodle is done through the events system.
  • New events should be located in the "classes/event" directory.
  • It is possible to create observers and subscribe to events.

links

Web Services and AJAX

  • Moodle web services uses the external functions API.
  • The recommended way to make AJAX requests is to use the ajax AMD file which uses the external functions API.
  • External functions should be located in the "classes/external.php" file.
  • A list of services should be included in "db/services.php". This file is required to register the web services with Moodle.
  • The services list is an array which contains:
    • classname Name of the external class.
    • methodname The name of the external function.
    • classpath system path to the external function file.
    • description Description of the function
    • type Create, read, update, delete
    • ajax Can this function be used with ajax?
    • capabilities Capabilities required to use this function.

links

Using caching to improve performance

Supporting backup and restore

Supporting automated testing

  • Moodle has two types of automated testing: php unit tests, and behat tests.
  • Unit tests are for testing functions.
  • Behat tests runs through scenarios.
    • Behat tests follows a script and navigates through moodle pages.
  • unit tests should be located in the "tests" directory.
  • behat tests should be located in the "tests/behat" directory.
  • Tests located in these directories will be run through when a full test run is initiated.
  • behat tests are actually feature files and end with the extension ".feature".

links

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