AccountHub/pages.php

32 lines
538 B
PHP
Raw Normal View History

<?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" => [
"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"
],
"security" => [
"change_password",
"setup_2fa"
],
"404" => [
"404_error"
]
]);