2017-04-16 02:05:18 -06:00
|
|
|
<?php
|
|
|
|
|
2017-12-16 13:27:09 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2017-04-16 02:05:18 -06:00
|
|
|
// List of pages and metadata
|
|
|
|
define("PAGES", [
|
|
|
|
"home" => [
|
2017-07-21 00:58:25 -06:00
|
|
|
"title" => "home",
|
|
|
|
"navbar" => true,
|
|
|
|
"icon" => "home"
|
2017-04-16 02:05:18 -06:00
|
|
|
],
|
|
|
|
"security" => [
|
2017-07-21 00:58:25 -06:00
|
|
|
"title" => "account options",
|
|
|
|
"navbar" => true,
|
|
|
|
"icon" => "cogs"
|
2017-04-16 02:05:18 -06:00
|
|
|
],
|
|
|
|
"404" => [
|
2017-07-21 00:58:25 -06:00
|
|
|
"title" => "404 error",
|
|
|
|
"navbar" => false
|
2017-04-16 02:05:18 -06:00
|
|
|
]
|
|
|
|
]);
|
|
|
|
|
2017-07-21 00:58:25 -06:00
|
|
|
|
2017-04-16 02:05:18 -06:00
|
|
|
// Which apps to load on a given page
|
|
|
|
define("APPS", [
|
|
|
|
"home" => [
|
2017-05-13 16:17:58 -06:00
|
|
|
"taskfloor_tasks",
|
2017-06-19 00:37:53 -06:00
|
|
|
"qwikclock_inout",
|
2017-06-19 00:54:49 -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",
|
2017-12-30 14:29:20 -07:00
|
|
|
"setup_2fa",
|
|
|
|
"change_pin"
|
2017-04-16 02:05:18 -06:00
|
|
|
],
|
|
|
|
"404" => [
|
|
|
|
"404_error"
|
|
|
|
]
|
|
|
|
]);
|