--- /dev/null
+<?php
+
+ class mw_hello extends mw_plugin{
+
+ function title(){
+ return "Hello World !";
+ }
+
+ function description(){
+ return "Un plugin qui affiche une page Hello World ! avec une citation aléatoire";
+ }
+
+ function install($env){
+ return true;
+ }
+
+ function uninstall($env){
+ return true;
+ }
+
+ function enable($env){
+ return true;
+ }
+
+ function disable($env){
+ return true;
+ }
+
+ function init($env){
+ return true;
+ }
+
+ }
+
+?>
\ No newline at end of file