blob: e0adbdc814a43c87f88eaae9bd7bf8bd759b31ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?php
/*
* File: ratatoeskr/backend/main.php
* Main file for the backend.
*
* License:
* This file is part of Ratatöskr.
* Ratatöskr is licensed unter the MIT / X11 License.
* See "ratatoeskr/licenses/ratatoeskr" for more information.
*/
require_once(dirname(__FILE__) . "/../sys/");
$backend_subactions = url_action_subactions(array(
"_default" => url_action_alias(array("login")),
"login" => url_action_simple(function($data)
{
}),
));
?>
|