Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create moodle local plugin

Tags:

moodle

I'm creating a custom moodle local plugin, but I'm not finding any help regarding this. Can someone help and give me general layout of the local plugin?

I'm new in moodle.

like image 548
katrina Avatar asked Feb 08 '13 14:02

katrina


1 Answers

To create local plugin you can follow following folder structure according to Moodle documentation (https://docs.moodle.org/dev/Local_plugins)-

local/
     yourplugin/
       db/
         access.php
         install.php
         install.xml
       lang/
         en/
           yourplugin.php
       index.php
       settings.php
       version.php
like image 75
Jitendra Gaur Avatar answered Sep 22 '22 16:09

Jitendra Gaur