summaryrefslogtreecommitdiff
path: root/protected/autoload.php
diff options
context:
space:
mode:
Diffstat (limited to 'protected/autoload.php')
-rwxr-xr-xprotected/autoload.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/protected/autoload.php b/protected/autoload.php
new file mode 100755
index 0000000..39efbae
--- /dev/null
+++ b/protected/autoload.php
@@ -0,0 +1,15 @@
+<?php
+
+function logging($content){
+ $file = dirname(__FILE__).'/log.txt';
+ file_put_contents($file, $content, FILE_APPEND | LOCK_EX);
+}
+
+
+require_once "Async.php";
+require_once "Cache.php";
+require_once "Settings.php";
+require_once "Video.php";
+
+
+Settings::setConfigs(); \ No newline at end of file