summaryrefslogtreecommitdiffstats
path: root/controllers/ImportController.php
diff options
context:
space:
mode:
Diffstat (limited to 'controllers/ImportController.php')
-rw-r--r--controllers/ImportController.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/controllers/ImportController.php b/controllers/ImportController.php
new file mode 100644
index 0000000..af917fb
--- /dev/null
+++ b/controllers/ImportController.php
@@ -0,0 +1,13 @@
+<?php
+
+namespace app\controllers;
+
+class ImportController extends \lithium\action\Controller {
+ public function index($source, $type = 'all') {
+ if ($this->request->data) {
+ $user = Auth::check('default');
+ $user = Users::find($user->id);
+ ContentList::ImportAnimeXML($user, $this->request->data['file']);
+ }
+ }
+} \ No newline at end of file