syntaxe POO (visibilité) dev master mw_hello.0.5
authordj3c1t <dj3c1t@free.fr>
Sun, 15 Jun 2014 18:34:30 +0000 (20:34 +0200)
committerdj3c1t <dj3c1t@free.fr>
Sun, 15 Jun 2014 18:34:30 +0000 (20:34 +0200)
app/controllers/hello/index.php
mw_hello.php

index e317fe9..89bb6a3 100644 (file)
@@ -2,9 +2,7 @@
 
   class mw_hello_index extends mw_controller{
 
-    function index(&$env){
+    public function index(){
     }
 
   }
-
-?>
\ No newline at end of file
index dc385c3..b95aa62 100644 (file)
@@ -2,19 +2,17 @@
 
   class mw_hello extends mw_plugin{
 
-    function title(){
+    public function title(){
       return "Hello World !";
     }
 
-    function description(){
+    public function description(){
       return "Un plugin qui affiche une page Hello World !";
     }
 
-    function init($env){
+    public function init($env){
       $env->set_link("menu_top/hello", $env->url("hello"), "Hello");
       return true;
     }
 
   }
-
-?>
\ No newline at end of file