001    /**
002     * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.kernel.servlet.taglib.ui;
016    
017    /**
018     * @author Sergio González
019     */
020    public class FormNavigatorConstants {
021    
022            public static final String CATEGORY_KEY_COMPANY_SETTINGS_CONFIGURATION =
023                    "configuration";
024    
025            public static final String CATEGORY_KEY_COMPANY_SETTINGS_IDENTIFICATION =
026                    "identification";
027    
028            public static final String CATEGORY_KEY_COMPANY_SETTINGS_MISCELLANEOUS =
029                    "miscellaneous";
030    
031            public static final String CATEGORY_KEY_COMPANY_SETTINGS_SOCIAL = "social";
032    
033            public static final String CATEGORY_KEY_LAYOUT_ADVANCED = "advanced";
034    
035            public static final String CATEGORY_KEY_LAYOUT_GENERAL = "general";
036    
037            public static final String CATEGORY_KEY_LAYOUT_LOOK_AND_FEEL =
038                    "look-and-feel";
039    
040            public static final String CATEGORY_KEY_LAYOUT_SEO = "seo";
041    
042            public static final String CATEGORY_KEY_LAYOUT_SET_ADVANCED = "advanced";
043    
044            public static final String CATEGORY_KEY_LAYOUT_SET_LOOK_AND_FEEL =
045                    "look-and-feel";
046    
047            public static final String CATEGORY_KEY_ORGANIZATION_IDENTIFICATION =
048                    "identification";
049    
050            public static final String CATEGORY_KEY_ORGANIZATION_MISCELLANEOUS =
051                    "miscellaneous";
052    
053            public static final String
054                    CATEGORY_KEY_ORGANIZATION_ORGANIZATION_INFORMATION =
055                            "organization-information";
056    
057            public static final String CATEGORY_KEY_SITES_ADVANCED = "advanced";
058    
059            public static final String CATEGORY_KEY_SITES_GENERAL = "general";
060    
061            public static final String CATEGORY_KEY_SITES_LANGUAGES = "languages";
062    
063            public static final String CATEGORY_KEY_SITES_SEO =
064                    "search-engine-optimization";
065    
066            public static final String CATEGORY_KEY_SITES_SOCIAL = "social";
067    
068            public static final String CATEGORY_KEY_USER_IDENTIFICATION =
069                    "identification";
070    
071            public static final String CATEGORY_KEY_USER_MISCELLANEOUS =
072                    "miscellaneous";
073    
074            public static final String CATEGORY_KEY_USER_USER_INFORMATION =
075                    "user-information";
076    
077            public static final String FORM_NAVIGATOR_ID_COMPANY_SETTINGS =
078                    "company.settings.form";
079    
080            public static final String FORM_NAVIGATOR_ID_JOURNAL = "journal.form";
081    
082            public static final String FORM_NAVIGATOR_ID_LAYOUT = "layout.form";
083    
084            public static final String FORM_NAVIGATOR_ID_LAYOUT_SET = "layout.set.form";
085    
086            public static final String FORM_NAVIGATOR_ID_ORGANIZATIONS =
087                    "organizations.form";
088    
089            public static final String FORM_NAVIGATOR_ID_SITES = "sites.form";
090    
091            public static final String FORM_NAVIGATOR_ID_USERS = "users.form";
092    
093    }