Using camelCase for function names in 'inc/lib_user.php'

PHP function names is case-insensitive so this change isn't
intrusive but improve readability of the code.
This commit is contained in:
Aldo "xoen" Giambelluca 2010-07-10 20:00:27 +02:00
parent 890d7fa512
commit 0939d5c393
1 changed files with 13 additions and 13 deletions

View File

@ -45,7 +45,7 @@ class OC_USER {
* check if the login button is pressed and logg the user in * check if the login button is pressed and logg the user in
* *
*/ */
public static function loginlisener(){ public static function loginLisener(){
if(isset($_POST['loginbutton']) and isset($_POST['password']) and isset($_POST['login'])){ if(isset($_POST['loginbutton']) and isset($_POST['password']) and isset($_POST['login'])){
if(OC_USER::login($_POST['login'],$_POST['password'])){ if(OC_USER::login($_POST['login'],$_POST['password'])){
echo 1; echo 1;
@ -70,7 +70,7 @@ class OC_USER {
* try to create a new user * try to create a new user
* *
*/ */
public static function createuser($username,$password){ public static function createUser($username,$password){
global $CONFIG_DBTABLEPREFIX; global $CONFIG_DBTABLEPREFIX;
if(OC_USER::getuserid($username,true)!=0){ if(OC_USER::getuserid($username,true)!=0){
return false; return false;
@ -113,7 +113,7 @@ class OC_USER {
* check if the logout button is pressed and logout the user * check if the logout button is pressed and logout the user
* *
*/ */
public static function logoutlisener(){ public static function logoutLisener(){
if(isset($_GET['logoutbutton']) && isset($_SESSION['username'])){ if(isset($_GET['logoutbutton']) && isset($_SESSION['username'])){
OC_LOG::event($_SESSION['username'],2,''); OC_LOG::event($_SESSION['username'],2,'');
$_SESSION['user_id']=false; $_SESSION['user_id']=false;
@ -134,7 +134,7 @@ class OC_USER {
* try to create a new group * try to create a new group
* *
*/ */
public static function creategroup($groupname){ public static function createGroup($groupname){
global $CONFIG_DBTABLEPREFIX; global $CONFIG_DBTABLEPREFIX;
if(OC_USER::getgroupid($groupname,true)==0){ if(OC_USER::getgroupid($groupname,true)==0){
$groupname=OC_DB::escape($groupname); $groupname=OC_DB::escape($groupname);
@ -150,7 +150,7 @@ class OC_USER {
* get the id of a user * get the id of a user
* *
*/ */
public static function getuserid($username,$nocache=false){ public static function getUserId($username,$nocache=false){
global $CONFIG_DBTABLEPREFIX; global $CONFIG_DBTABLEPREFIX;
$usernameclean=strtolower($username); $usernameclean=strtolower($username);
if(!$nocache and isset($_SESSION['user_id_cache'][$usernameclean])){//try to use cached value to save an sql query if(!$nocache and isset($_SESSION['user_id_cache'][$usernameclean])){//try to use cached value to save an sql query
@ -174,7 +174,7 @@ class OC_USER {
* get the id of a group * get the id of a group
* *
*/ */
public static function getgroupid($groupname,$nocache=false){ public static function getGroupId($groupname,$nocache=false){
global $CONFIG_DBTABLEPREFIX; global $CONFIG_DBTABLEPREFIX;
if(!$nocache and isset($_SESSION['group_id_cache'][$groupname])){//try to use cached value to save an sql query if(!$nocache and isset($_SESSION['group_id_cache'][$groupname])){//try to use cached value to save an sql query
return $_SESSION['group_id_cache'][$groupname]; return $_SESSION['group_id_cache'][$groupname];
@ -197,7 +197,7 @@ class OC_USER {
* get the name of a group * get the name of a group
* *
*/ */
public static function getgroupname($groupid,$nocache=false){ public static function getGroupName($groupid,$nocache=false){
global $CONFIG_DBTABLEPREFIX; global $CONFIG_DBTABLEPREFIX;
if($nocache and $name=array_search($groupid,$_SESSION['group_id_cache'])){//try to use cached value to save an sql query if($nocache and $name=array_search($groupid,$_SESSION['group_id_cache'])){//try to use cached value to save an sql query
return $name; return $name;
@ -216,7 +216,7 @@ class OC_USER {
* check if a user belongs to a group * check if a user belongs to a group
* *
*/ */
public static function ingroup($username,$groupname){ public static function inGroup($username,$groupname){
global $CONFIG_DBTABLEPREFIX; global $CONFIG_DBTABLEPREFIX;
$userid=OC_USER::getuserid($username); $userid=OC_USER::getuserid($username);
@ -238,7 +238,7 @@ class OC_USER {
* add a user to a group * add a user to a group
* *
*/ */
public static function addtogroup($username,$groupname){ public static function addToGroup($username,$groupname){
global $CONFIG_DBTABLEPREFIX; global $CONFIG_DBTABLEPREFIX;
if(!OC_USER::ingroup($username,$groupname)){ if(!OC_USER::ingroup($username,$groupname)){
@ -260,7 +260,7 @@ class OC_USER {
} }
} }
public static function generatepassword(){ public static function generatePassword(){
return uniqid(); return uniqid();
} }
@ -268,7 +268,7 @@ class OC_USER {
* get all groups the user belongs to * get all groups the user belongs to
* *
*/ */
public static function getusergroups($username){ public static function getUserGroups($username){
global $CONFIG_DBTABLEPREFIX; global $CONFIG_DBTABLEPREFIX;
$userid=OC_USER::getuserid($username); $userid=OC_USER::getuserid($username);
@ -288,7 +288,7 @@ class OC_USER {
* set the password of a user * set the password of a user
* *
*/ */
public static function setpassword($username,$password){ public static function setPassword($username,$password){
global $CONFIG_DBTABLEPREFIX; global $CONFIG_DBTABLEPREFIX;
$password=sha1($password); $password=sha1($password);
@ -306,7 +306,7 @@ class OC_USER {
* check the password of a user * check the password of a user
* *
*/ */
public static function checkpassword($username,$password){ public static function checkPassword($username,$password){
global $CONFIG_DBTABLEPREFIX; global $CONFIG_DBTABLEPREFIX;
$password=sha1($password); $password=sha1($password);