use same class case everywhere
This commit is contained in:
parent
1ccf6d092b
commit
0d7f4b830c
@ -24,7 +24,7 @@ use dcCore;
|
|||||||
use dcFavorites;
|
use dcFavorites;
|
||||||
use dcPage;
|
use dcPage;
|
||||||
|
|
||||||
class admin
|
class Admin
|
||||||
{
|
{
|
||||||
public static function init()
|
public static function init()
|
||||||
{
|
{
|
||||||
@ -53,5 +53,5 @@ class admin
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
admin::init();
|
Admin::init();
|
||||||
admin::process();
|
Admin::process();
|
||||||
|
@ -30,7 +30,7 @@ use path;
|
|||||||
/* php ns */
|
/* php ns */
|
||||||
use Exception;
|
use Exception;
|
||||||
|
|
||||||
class config
|
class Config
|
||||||
{
|
{
|
||||||
public static function init(): void
|
public static function init(): void
|
||||||
{
|
{
|
||||||
@ -149,6 +149,6 @@ class config
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
config::init();
|
Config::init();
|
||||||
config::process();
|
Config::process();
|
||||||
config::render();
|
Config::render();
|
||||||
|
@ -24,7 +24,7 @@ use dcCore;
|
|||||||
/* php ns */
|
/* php ns */
|
||||||
use Exception;
|
use Exception;
|
||||||
|
|
||||||
class install
|
class Install
|
||||||
{
|
{
|
||||||
# -- Module specs --
|
# -- Module specs --
|
||||||
private static $mod_conf = [
|
private static $mod_conf = [
|
||||||
@ -106,4 +106,4 @@ class install
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return install::process();
|
return Install::process();
|
||||||
|
@ -31,7 +31,7 @@ use path;
|
|||||||
/* php ns */
|
/* php ns */
|
||||||
use Exception;
|
use Exception;
|
||||||
|
|
||||||
class index
|
class Index
|
||||||
{
|
{
|
||||||
private static $plugins_path = '';
|
private static $plugins_path = '';
|
||||||
private static $themes_path = '';
|
private static $themes_path = '';
|
||||||
@ -344,6 +344,6 @@ class index
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
index::init();
|
Index::init();
|
||||||
index::process();
|
Index::process();
|
||||||
index::render();
|
Index::render();
|
||||||
|
Loading…
Reference in New Issue
Block a user