Package com.psddev.cms.db

Examples of com.psddev.cms.db.Site


    @Override
    @SuppressWarnings("unchecked")
    protected void doService(final ToolPageContext page) throws IOException, ServletException {
        String redirect = page.param(String.class, "redirect");
        CmsTool.CommonContentSettings settings = null;
        Site site = page.getSite();

        if (site != null) {
            settings = site.getCommonContentSettings();
        }

        if (settings == null) {
            settings = page.getCmsTool().getCommonContentSettings();
        }
View Full Code Here

TOP

Related Classes of com.psddev.cms.db.Site

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.