Using camelCase for function names in 'inc/lib_base.php'
PHP function names is case-insensitive so this change isn't intrusive but improve readability of the code.
This commit is contained in:
parent
a532719c21
commit
00df2099b5
|
@ -146,7 +146,7 @@ class OC_UTIL {
|
||||||
*
|
*
|
||||||
* @param url $url
|
* @param url $url
|
||||||
*/
|
*/
|
||||||
public static function addscript($url){
|
public static function addScript($url){
|
||||||
self::$scripts[]=$url;
|
self::$scripts[]=$url;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -161,7 +161,7 @@ class OC_UTIL {
|
||||||
* check if the current server configuration is suitable for ownCloud
|
* check if the current server configuration is suitable for ownCloud
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public static function checkserver(){
|
public static function checkServer(){
|
||||||
global $SERVERROOT;
|
global $SERVERROOT;
|
||||||
global $CONFIG_DATADIRECTORY_ROOT;
|
global $CONFIG_DATADIRECTORY_ROOT;
|
||||||
global $CONFIG_BACKUPDIRECTORY;
|
global $CONFIG_BACKUPDIRECTORY;
|
||||||
|
@ -217,7 +217,7 @@ class OC_UTIL {
|
||||||
* show the header of the web GUI
|
* show the header of the web GUI
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public static function showheader(){
|
public static function showHeader(){
|
||||||
global $CONFIG_ADMINLOGIN;
|
global $CONFIG_ADMINLOGIN;
|
||||||
global $WEBROOT;
|
global $WEBROOT;
|
||||||
oc_require('templates/header.php');;
|
oc_require('templates/header.php');;
|
||||||
|
@ -239,7 +239,7 @@ class OC_UTIL {
|
||||||
* show the footer of the web GUI
|
* show the footer of the web GUI
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public static function showfooter(){
|
public static function showFooter(){
|
||||||
global $CONFIG_FOOTEROWNERNAME;
|
global $CONFIG_FOOTEROWNERNAME;
|
||||||
global $CONFIG_FOOTEROWNEREMAIL;
|
global $CONFIG_FOOTEROWNEREMAIL;
|
||||||
oc_require('templates/footer.php');;
|
oc_require('templates/footer.php');;
|
||||||
|
@ -251,7 +251,7 @@ class OC_UTIL {
|
||||||
* @param name $name
|
* @param name $name
|
||||||
* @param url $url
|
* @param url $url
|
||||||
*/
|
*/
|
||||||
public static function addnavigationentry($name,$url) {
|
public static function addNavigationEntry($name,$url) {
|
||||||
$entry=array();
|
$entry=array();
|
||||||
$entry['name']=$name;
|
$entry['name']=$name;
|
||||||
$entry['url']=$url;
|
$entry['url']=$url;
|
||||||
|
@ -262,7 +262,7 @@ class OC_UTIL {
|
||||||
* show the main navigation
|
* show the main navigation
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public static function shownavigation(){
|
public static function showNavigation(){
|
||||||
global $WEBROOT;
|
global $WEBROOT;
|
||||||
global $SERVERROOT;
|
global $SERVERROOT;
|
||||||
echo('<table class="center" cellpadding="5" cellspacing="0" border="0"><tr>');
|
echo('<table class="center" cellpadding="5" cellspacing="0" border="0"><tr>');
|
||||||
|
@ -287,7 +287,7 @@ class OC_UTIL {
|
||||||
* show the loginform
|
* show the loginform
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public static function showloginform(){
|
public static function showLoginForm(){
|
||||||
global $loginresult;
|
global $loginresult;
|
||||||
oc_require('templates/loginform.php');
|
oc_require('templates/loginform.php');
|
||||||
}
|
}
|
||||||
|
@ -297,7 +297,7 @@ class OC_UTIL {
|
||||||
* show an icon for a filetype
|
* show an icon for a filetype
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public static function showicon($filetype){
|
public static function showIcon($filetype){
|
||||||
global $WEBROOT;
|
global $WEBROOT;
|
||||||
if($filetype=='dir'){ echo('<td><img src="'.$WEBROOT.'/img/icons/folder.png" width="16" height="16"></td>');
|
if($filetype=='dir'){ echo('<td><img src="'.$WEBROOT.'/img/icons/folder.png" width="16" height="16"></td>');
|
||||||
}elseif($filetype=='foo'){ echo('<td>foo</td>');
|
}elseif($filetype=='foo'){ echo('<td>foo</td>');
|
||||||
|
@ -530,7 +530,7 @@ class OC_DB {
|
||||||
return self::$DBConnection->escape($string);
|
return self::$DBConnection->escape($string);
|
||||||
}
|
}
|
||||||
|
|
||||||
static function getDBStructure($file){
|
static function getDbStructure($file){
|
||||||
OC_DB::connect();
|
OC_DB::connect();
|
||||||
$definition = self::$schema->getDefinitionFromDatabase();
|
$definition = self::$schema->getDefinitionFromDatabase();
|
||||||
$dump_options = array(
|
$dump_options = array(
|
||||||
|
@ -541,7 +541,7 @@ class OC_DB {
|
||||||
self::$schema->dumpDatabase($definition, $dump_options, MDB2_SCHEMA_DUMP_STRUCTURE);
|
self::$schema->dumpDatabase($definition, $dump_options, MDB2_SCHEMA_DUMP_STRUCTURE);
|
||||||
}
|
}
|
||||||
|
|
||||||
static function createDBFromStructure($file){
|
static function createDbFromStructure($file){
|
||||||
OC_DB::connect();
|
OC_DB::connect();
|
||||||
global $CONFIG_DBNAME;
|
global $CONFIG_DBNAME;
|
||||||
global $CONFIG_DBTABLEPREFIX;
|
global $CONFIG_DBTABLEPREFIX;
|
||||||
|
|
Loading…
Reference in New Issue