Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

is there any API exists for Moodle? [closed]

Tags:

api

moodle

I want to create a customized front end for Moodle. Does anyone know that from where I can get API for this? or any other help?

like image 658
mqpasta Avatar asked Jan 05 '10 21:01

mqpasta


3 Answers

[Edit: I have written on, moodle theme modification which we did at http://www.iank.it/category/e-learning/ for http://www.edupristine.com/ca ]

It will be very tiresome to create a complete new frontend for moodle, I would suggest choose a theme which looks closest to what you want and then start modifying it.

You will have to understand moodle's database and tables structure and also Moodle database Manipulation API.

After this you can straight jump into tinkering the moodle code and understand its core functions wherever required.
You would also benefit from many plugins available if you modify the moodle frontend instead of creating one.

like image 123
iankit Avatar answered Sep 23 '22 10:09

iankit


You can install and then call Moodle's "webservices":

  • http://cipcnet.insa-lyon.fr/Members/ppollet/public/moodlews/
  • moodle.org/mod/forum/discuss.php?d=67947

Also, call Moodle from MOSS:

  • fraserelder.blogspot.com/2009/03/moodle-integration-solution.html

or the new Moodle 2 Web Services:

  • docs.moodle.org/en/Development:Web_services
  • moodle.org/mod/forum/view.php?id=6971

Moodle can integrate well with Google Sites/Apps ,Joomla ,Drupal and Wordpress (SSO, Web Services...)

like image 30
nadavkav Avatar answered Sep 21 '22 10:09

nadavkav


The Moodle core is well documented on their website. Try checking through those first.

like image 29
BBlake Avatar answered Sep 19 '22 10:09

BBlake