summaryrefslogtreecommitdiff
path: root/protected/autoload.php
diff options
context:
space:
mode:
authoryo mama <pepper@scannerjammer.com>2015-04-04 01:11:47 -0700
committeryo mama <pepper@scannerjammer.com>2015-04-04 01:11:47 -0700
commita736da57f084017ac17e06cd9db19b1fd166e1a6 (patch)
tree55a9e83b31f6bdc176731125de0cc42668daf988 /protected/autoload.php
first
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