FCLT#64044 'mobile menustructuur'-menuoptie toegevoegd
svn path=/Database/trunk/; revision=54366
This commit is contained in:
@@ -2870,6 +2870,7 @@ DEF_MENUITEM(2, 'lcl_menu_fac_notificaties' , '', 'FAC', 'appl/mgt/fac_srtno
|
||||
DEF_MENUITEM(2, 'lcl_menu_cht_chatkanalen' , '', 'CHT', 'appl/mgt/cht_discipline.asp', 0, 0, 'WEB_PRSSYS', 'W', '1', '');
|
||||
|
||||
DEF_MENUITEM(2, 'lcl_menu_fac_menustructuur' , '', 'FAC', 'appl/fac/fac_menu_search.asp?urole=bo', 0, 0, 'WEB_PRSSYS', 'W', '1', '');
|
||||
DEF_MENUITEM(2, 'lcl_menu_fac_menustructuur_m' , '', 'FAC', 'appl/fac/fac_menu_search.asp?urole=bo?mobile=1', 0, 0, 'WEB_PRSSYS', 'W', '0', '');
|
||||
DEF_MENUITEM(2, 'lcl_menu_fac_bookmarks' , '', 'FAC', 'appl/fac/fac_bookmark_list.asp', 0, 0, 'WEB_HLPADM', 'R', '0', '');
|
||||
DEF_MENUITEM(2, 'lcl_menu_fac_vertalingen' , '', 'FAC', 'appl/fac/fac_locale_search_std.asp', 0, 0, 'WEB_LCLSYS', 'R', '1', '');
|
||||
DEF_MENUITEM(2, 'lcl_menu_fac_anonymize' , '', 'FAC', 'appl/fac/fac_anonymize_search.asp', 0, 0, 'WEB_PRSSYS', 'W', '1', '');
|
||||
|
||||
@@ -4230,6 +4230,7 @@ FAC_LCL('lcl_menu_fac_notificatiejobs', 'Notificatiejobs', 'Notification jobs')
|
||||
FAC_LCL('lcl_menu_fac_eigen_tabellen', 'Eigen tabellen', 'User tables')
|
||||
FAC_LCL('lcl_menu_fac_inhoud_eigen_tabe', 'Inhoud eigen tabellen', 'User table content')
|
||||
FAC_LCL('lcl_menu_fac_menustructuur', 'Menustructuur', 'Menu structure')
|
||||
FAC_LCL('lcl_menu_fac_menustructuur_m', 'Mobiele menustructuur', 'Mobile menu structure')
|
||||
FAC_LCL('lcl_menu_fac_bookmarks', 'Bookmarks', 'Bookmarks')
|
||||
FAC_LCL('lcl_menu_fac_vertalingen', 'Vertalingen', 'Translations')
|
||||
FAC_LCL('lcl_menu_fac_setting', 'Instellingen', 'Settings')
|
||||
|
||||
@@ -622,6 +622,23 @@ UPDATE fac_menu
|
||||
ALTER TABLE fac_menu
|
||||
MODIFY fac_menu_level NUMBER(1) DEFAULT 1 NOT NULL;
|
||||
|
||||
DEF_MENUITEM(2, 'lcl_menu_fac_menustructuur_m' , '', 'FAC', 'appl/fac/fac_menu_search.asp?urole=bo&mobile=1', 0, 0, 'WEB_PRSSYS', 'W', '0', '');
|
||||
|
||||
DECLARE
|
||||
mobile_enabled fac_setting.fac_setting_pvalue%TYPE;
|
||||
BEGIN
|
||||
SELECT COALESCE (fac_setting_pvalue, fac_setting_default)
|
||||
INTO mobile_enabled
|
||||
FROM fac_setting
|
||||
WHERE fac_setting_name = 'mobile_enabled';
|
||||
|
||||
IF mobile_enabled = 1
|
||||
THEN
|
||||
MENU_INS_AFTER('lcl_menu_fac_menustructuur_m', 'lcl_menu_fac_menustructuur', 2);
|
||||
END IF;
|
||||
END;
|
||||
/
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////////// MARX#69975
|
||||
ALTER TABLE prs_perslid_inzetbaar ADD (
|
||||
alg_locatie_key
|
||||
|
||||
Reference in New Issue
Block a user