mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-22 20:19:21 +00:00
52 lines
982 B
JavaScript
52 lines
982 B
JavaScript
/**
|
|
* Differents pages listing
|
|
*
|
|
* @author Pierre HUBERT
|
|
*/
|
|
ComunicWeb.pagesList = {
|
|
|
|
/**
|
|
* Home page
|
|
*/
|
|
home: {
|
|
pageTitle: "Comunic",
|
|
methodHandler: "ComunicWeb.pages.home.home.openHomePage",
|
|
disableMenus: false,
|
|
},
|
|
|
|
/**
|
|
* User profile page
|
|
*/
|
|
user: {
|
|
pageTitle: "User Page",
|
|
methodHandler: "ComunicWeb.pages.userPage.main.open",
|
|
disableMenus: false,
|
|
},
|
|
|
|
/**
|
|
* Login page
|
|
*/
|
|
login: {
|
|
pageTitle: "Login page",
|
|
methodHandler: "ComunicWeb.pages.login.openLoginPage",
|
|
disableMenus: true,
|
|
},
|
|
|
|
/**
|
|
* Logout page
|
|
*/
|
|
logout: {
|
|
pageTitle: "Logout",
|
|
methodHandler: "ComunicWeb.pages.logout.openLogoutPage",
|
|
disableMenus: true,
|
|
},
|
|
|
|
/**
|
|
* 404 Page not found
|
|
*/
|
|
notFound: {
|
|
pageTitle: "404 page not found",
|
|
methodHandler: "ComunicWeb.common.error.pageNotFound",
|
|
}
|
|
|
|
}; |