rename methods splitting with _ attribute from method name
authorMatteo Nastasi (mop) <nastasi@alternativeoutput.it>
Fri, 11 Feb 2011 07:21:23 +0000 (08:21 +0100)
committerMatteo Nastasi (mop) <nastasi@alternativeoutput.it>
Fri, 11 Feb 2011 07:21:23 +0000 (08:21 +0100)
web/Obj/brisk.phh
web/Obj/dbase_base.phh

index 4de7753..e51304d 100644 (file)
@@ -1913,7 +1913,7 @@ class Room {
       log_auth("XXX", "authenticate: ".($authenticate != FALSE ? "TRUE" : "FALSE"));
       
       if ($authenticate != FALSE) {
-          $user_type = $authenticate->typeget();
+          $user_type = $authenticate->type_get();
       }
       else {
           $idx = -3;
index 097e677..a827725 100644 (file)
@@ -47,27 +47,27 @@ class LoginDBItem {
         return ($ret);
     }
 
-    function codeget()
+    function code_get()
     {
         return $this->code;
     }
 
-    function loginget()
+    function login_get()
     {
         return $this->login;
     }
     
-    function passget()
+    function pass_get()
     {
         return $this->pass;
     }
 
-    function emailget()
+    function email_get()
     {
         return $this->email;
     }
 
-    function typeget()
+    function type_get()
     {
         return $this->type;
     }