creation du fichier mw_hello.php
authordj3c1t <dj3c1t@free.fr>
Wed, 12 Dec 2012 21:10:00 +0000 (22:10 +0100)
committerdj3c1t <dj3c1t@free.fr>
Wed, 12 Dec 2012 21:10:00 +0000 (22:10 +0100)
mw_hello.php [new file with mode: 0644]

diff --git a/mw_hello.php b/mw_hello.php
new file mode 100644 (file)
index 0000000..16580a4
--- /dev/null
@@ -0,0 +1,35 @@
+<?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