2017-04-16 02:05:18 -06:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// List of pages and metadata
|
|
|
|
define("PAGES", [
|
|
|
|
"home" => [
|
|
|
|
"title" => "{DEFAULT}"
|
|
|
|
],
|
|
|
|
"security" => [
|
|
|
|
"title" => "security options"
|
|
|
|
],
|
|
|
|
"404" => [
|
|
|
|
"title" => "404 error"
|
|
|
|
]
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Which apps to load on a given page
|
|
|
|
define("APPS", [
|
|
|
|
"home" => [
|
2017-05-13 16:17:58 -06:00
|
|
|
"taskfloor_tasks",
|
2017-05-13 16:40:33 -06:00
|
|
|
"taskfloor_messages",
|
2017-05-30 13:24:46 -06:00
|
|
|
"inventory_link",
|
2017-05-13 17:24:52 -06:00
|
|
|
"account_security"
|
2017-04-16 02:05:18 -06:00
|
|
|
],
|
|
|
|
"security" => [
|
2017-06-16 17:36:42 -06:00
|
|
|
"sync_mobile",
|
2017-04-16 02:05:18 -06:00
|
|
|
"change_password",
|
|
|
|
"setup_2fa"
|
|
|
|
],
|
|
|
|
"404" => [
|
|
|
|
"404_error"
|
|
|
|
]
|
|
|
|
]);
|