Misc Classes: Database class integration.

This commit is contained in:
Nate
2019-09-04 06:44:50 -06:00
parent 50d7e33fbd
commit 37b5713c4b
7 changed files with 303 additions and 372 deletions

View File

@@ -265,7 +265,7 @@ class text {
$text = array();
$languages = array();
//fetch all the languages
//retrieve all the languages
$files = glob($_SERVER["PROJECT_ROOT"] . "/*/*/app_languages.php");
foreach($files as $file) {
include $file;
@@ -309,7 +309,7 @@ class text {
$language_totals[$language_code] = 0;
}
//fetch all the languages
//retrieve all the languages
$text = array();
$files = glob($_SERVER["PROJECT_ROOT"] . "/*/*/app_languages.php");
foreach($files as $file) {
@@ -327,7 +327,7 @@ class text {
}
unset($text);
//fetch all the menus
//retrieve all the menus
$x = 0;
$files = glob($_SERVER["PROJECT_ROOT"] . "/*/*");
foreach($files as $file) {