You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AccountHub/pages.php

34 lines
588 B
PHP

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