Note:

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

External functions API: Difference between revisions

From MoodleDocs
(Created page with "The External functions API allows you to create fully parametrised methods that can be accessed by external programs (such as Web services).")
 
No edit summary
Line 1: Line 1:
The [[External functions API]] allows you to create fully parametrised methods that can be accessed by external programs (such as [[Web services]]).
The [[External functions API]] allows you to create fully parametrised methods that can be accessed by external programs (such as [[Web services]]).
== externallib.php ==
* This file is located at the root of your plugin.
* This file is composed by a class that contains the external function referenced in services.php
For more information on how to implement the external function read the [[External_functions_API|External functions API]] documentation.

Revision as of 07:50, 16 January 2012

The External functions API allows you to create fully parametrised methods that can be accessed by external programs (such as Web services).

externallib.php

  • This file is located at the root of your plugin.
  • This file is composed by a class that contains the external function referenced in services.php

For more information on how to implement the external function read the External functions API documentation.