summaryrefslogtreecommitdiff
path: root/www/include.php
blob: 3a79919b4793e24e39fdeb58eefeef68e524df33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

require_once("constants.php");

$func_dir = "functions/";

require_once($func_dir . "func_failure.php");		// 404 and other errors
require_once($func_dir . "func_interface.php");		// presents the vfs content
require_once($func_dir . "func_invite.php");		// handles the invite routine
require_once($func_dir . "func_login.php");		// handles also logout
require_once($func_dir . "func_register.php");		// processing the registration
require_once($func_dir . "func_rewrite.php");		// rewrites URL if user forgot to add the username while loged in
require_once($func_dir . "func_select.php");		// get the primary key from the last folder
require_once($func_dir . "func_user.php");		// gets the userid and account specific stuff
require_once($func_dir . "func_content.php");		// get the vfs content

require_once("login.php");