Search in sources :

Example 11 with PageHandler

use of com.publiccms.common.handler.PageHandler in project PublicCMS-preview by sanluan.

the class MyContentListDirective method execute.

@Override
public void execute(RenderHandler handler, SysApp app, SysUser user) throws IOException, Exception {
    PageHandler page = service.getPage(new CmsContentQuery(getSite(handler).getId(), handler.getIntegerArray("status"), handler.getInteger("categoryId"), handler.getIntegerArray("categoryIds"), false, null, handler.getLong("parentId"), handler.getBoolean("emptyParent"), handler.getBoolean("onlyUrl"), handler.getBoolean("hasImages"), handler.getBoolean("hasFiles"), null, user.getId(), null, handler.getDate("endPublishDate")), handler.getBoolean("containChild"), null, null, handler.getInteger("pageIndex", 1), handler.getInteger("count", 30));
    handler.put("page", page);
}
Also used : PageHandler(com.publiccms.common.handler.PageHandler) CmsContentQuery(com.publiccms.views.pojo.query.CmsContentQuery)

Example 12 with PageHandler

use of com.publiccms.common.handler.PageHandler in project PublicCMS-preview by sanluan.

the class CmsCategoryListDirective method execute.

@Override
public void execute(RenderHandler handler) throws IOException, Exception {
    CmsCategoryQuery queryEntity = new CmsCategoryQuery();
    queryEntity.setQueryAll(handler.getBoolean("queryAll"));
    if (handler.getBoolean("advanced", false)) {
        queryEntity.setDisabled(handler.getBoolean("disabled", false));
        queryEntity.setHidden(handler.getBoolean("hidden"));
    } else {
        queryEntity.setDisabled(false);
        queryEntity.setHidden(false);
    }
    queryEntity.setSiteId(getSite(handler).getId());
    queryEntity.setParentId(handler.getInteger("parentId"));
    queryEntity.setTypeId(handler.getInteger("typeId"));
    queryEntity.setAllowContribute(handler.getBoolean("allowContribute"));
    PageHandler page = service.getPage(queryEntity, handler.getInteger("pageIndex", 1), handler.getInteger("count", 30));
    handler.put("page", page).render();
}
Also used : PageHandler(com.publiccms.common.handler.PageHandler) CmsCategoryQuery(com.publiccms.views.pojo.query.CmsCategoryQuery)

Example 13 with PageHandler

use of com.publiccms.common.handler.PageHandler in project PublicCMS-preview by sanluan.

the class HomeGroupApplyListDirective method execute.

@Override
public void execute(RenderHandler handler) throws IOException, Exception {
    PageHandler page = service.getPage(handler.getBoolean("disabled"), handler.getInteger("pageIndex", 1), handler.getInteger("count", 30));
    handler.put("page", page).render();
}
Also used : PageHandler(com.publiccms.common.handler.PageHandler)

Example 14 with PageHandler

use of com.publiccms.common.handler.PageHandler in project PublicCMS-preview by sanluan.

the class HomeGroupPostListDirective method execute.

@Override
public void execute(RenderHandler handler) throws IOException, Exception {
    PageHandler page = service.getPage(getSite(handler).getId(), handler.getLong("groupId"), handler.getLong("userId"), handler.getBoolean("disabled"), handler.getString("orderField"), handler.getString("orderType"), handler.getInteger("pageIndex", 1), handler.getInteger("count", 30));
    handler.put("page", page).render();
}
Also used : PageHandler(com.publiccms.common.handler.PageHandler)

Example 15 with PageHandler

use of com.publiccms.common.handler.PageHandler in project PublicCMS-preview by sanluan.

the class HomeGroupUserListDirective method execute.

@Override
public void execute(RenderHandler handler) throws IOException, Exception {
    PageHandler page = service.getPage(handler.getBoolean("disabled"), handler.getInteger("pageIndex", 1), handler.getInteger("count", 30));
    handler.put("page", page).render();
}
Also used : PageHandler(com.publiccms.common.handler.PageHandler)

Aggregations

PageHandler (com.publiccms.common.handler.PageHandler)65 FacetPageHandler (com.publiccms.common.handler.FacetPageHandler)3 SysSite (com.publiccms.entities.sys.SysSite)3 IOException (java.io.IOException)3 Date (java.util.Date)3 HashMap (java.util.HashMap)3 CmsContentQuery (com.publiccms.views.pojo.query.CmsContentQuery)2 CmsContentAttribute (com.publiccms.entities.cms.CmsContentAttribute)1 CmsLottery (com.publiccms.entities.cms.CmsLottery)1 LogUpload (com.publiccms.entities.log.LogUpload)1 SysCluster (com.publiccms.entities.sys.SysCluster)1 CmsCategoryQuery (com.publiccms.views.pojo.query.CmsCategoryQuery)1 ArrayList (java.util.ArrayList)1 List (java.util.List)1 Map (java.util.Map)1 Scheduled (org.springframework.scheduling.annotation.Scheduled)1 ModelMap (org.springframework.ui.ModelMap)1 RequestMapping (org.springframework.web.bind.annotation.RequestMapping)1 ResponseBody (org.springframework.web.bind.annotation.ResponseBody)1