]> jfr.im git - uguu.git/blobdiff - src/static/php/grill.php
Update checkfiles.sh
[uguu.git] / src / static / php / grill.php
index d41172afc6106aa8ecdfa6bd7d61506954951c69..6472d53a96eeb3ea479c17bb07c525dc5aacdceb 100644 (file)
@@ -1,26 +1,5 @@
 <?php
     
-    function checkConfig()
-    {
-        if (!file_exists(__DIR__ . '../config.json')) {
-            throw new Exception('Cant read settings file.', 500);
-        }
-        try {
-            $settings = json_decode(
-               file_get_contents(__DIR__ . '../config.json'),
-               true,
-            );
-            if ($settings['PHP_ERRORS']) {
-                error_reporting(E_ALL);
-                ini_set('display_errors', 1);
-            }
-        }
-        catch (Exception) {
-            throw new Exception('Cant populate settings.', 500);
-        }
-    }
-    
-    checkConfig();
     /**
      * Uguu
      *
@@ -41,6 +20,6 @@
      */
     require_once __DIR__ . '/../vendor/autoload.php';
     
-    use Pomf\GrillLoader;
+    use Pomf\Uguu\Classes\GrillLoader;
     
     new GrillLoader();