2018-04-13 17:00:49 +00:00
|
|
|
/**
|
|
|
|
* Settings pages list
|
|
|
|
*
|
|
|
|
* @author Pierre HUBERT
|
|
|
|
*/
|
|
|
|
|
|
|
|
ComunicWeb.pages.settings.sectionsList = {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* General settings
|
|
|
|
*/
|
|
|
|
general: {
|
|
|
|
title: "General",
|
|
|
|
handler: "ComunicWeb.pages.settings.sections.general.open",
|
|
|
|
},
|
|
|
|
|
2018-08-15 06:51:02 +00:00
|
|
|
/**
|
|
|
|
* Language settings
|
|
|
|
*/
|
|
|
|
language: {
|
|
|
|
title: "Language",
|
|
|
|
handler: "ComunicWeb.pages.settings.sections.language.open",
|
|
|
|
},
|
|
|
|
|
2018-04-18 16:11:45 +00:00
|
|
|
/**
|
|
|
|
* Security settings
|
|
|
|
*/
|
|
|
|
security: {
|
|
|
|
title: "Security",
|
|
|
|
handler: "ComunicWeb.pages.settings.sections.security.open",
|
|
|
|
},
|
|
|
|
|
2018-04-20 06:35:43 +00:00
|
|
|
/**
|
|
|
|
* Password settings
|
|
|
|
*/
|
|
|
|
password: {
|
|
|
|
title: "Password",
|
|
|
|
handler: "ComunicWeb.pages.settings.sections.password.open",
|
|
|
|
},
|
2018-04-29 13:13:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Account image
|
|
|
|
*/
|
|
|
|
account_image: {
|
|
|
|
title: "Account image",
|
|
|
|
handler: "ComunicWeb.pages.settings.sections.accountImage.open"
|
|
|
|
},
|
2018-05-09 10:18:28 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Privacy settings
|
|
|
|
*/
|
|
|
|
privacy: {
|
|
|
|
title: "Privacy",
|
|
|
|
handler: "ComunicWeb.pages.settings.sections.privacy.open",
|
|
|
|
},
|
2018-04-13 17:00:49 +00:00
|
|
|
}
|