All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.liferay.blogs.web.internal.portlet.BlogsPortlet Maven / Gradle / Ivy
/**
* SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
* SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
*/
package com.liferay.blogs.web.internal.portlet;
import com.liferay.asset.constants.AssetWebKeys;
import com.liferay.asset.display.page.portlet.AssetDisplayPageFriendlyURLProvider;
import com.liferay.asset.util.AssetHelper;
import com.liferay.blogs.constants.BlogsPortletKeys;
import com.liferay.blogs.web.internal.display.context.BlogsViewEntryContentDisplayContext;
import com.liferay.portal.kernel.model.Release;
import com.liferay.portal.kernel.util.Portal;
import com.liferay.trash.TrashHelper;
import com.liferay.trash.util.TrashWebKeys;
import java.io.IOException;
import javax.portlet.Portlet;
import javax.portlet.PortletException;
import javax.portlet.RenderRequest;
import javax.portlet.RenderResponse;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.Reference;
/**
* @author Sergio González
*/
@Component(
property = {
"com.liferay.portlet.add-default-resource=true",
"com.liferay.portlet.application-type=full-page-application",
"com.liferay.portlet.application-type=widget",
"com.liferay.portlet.css-class-wrapper=portlet-blogs",
"com.liferay.portlet.display-category=category.collaboration",
"com.liferay.portlet.header-portlet-css=/blogs/css/main.css",
"com.liferay.portlet.icon=/blogs/icons/blogs.png",
"com.liferay.portlet.layout-cacheable=true",
"com.liferay.portlet.preferences-owned-by-group=true",
"com.liferay.portlet.private-request-attributes=false",
"com.liferay.portlet.private-session-attributes=false",
"com.liferay.portlet.render-weight=50",
"com.liferay.portlet.scopeable=true",
"com.liferay.portlet.struts-path=blogs",
"com.liferay.portlet.use-default-template=true",
"javax.portlet.display-name=Blogs", "javax.portlet.expiration-cache=0",
"javax.portlet.init-param.always-display-default-configuration-icons=true",
"javax.portlet.init-param.always-send-redirect=true",
"javax.portlet.init-param.template-path=/META-INF/resources/",
"javax.portlet.name=" + BlogsPortletKeys.BLOGS,
"javax.portlet.resource-bundle=content.Language",
"javax.portlet.security-role-ref=guest,power-user,user",
"javax.portlet.supported-public-render-parameter=categoryId",
"javax.portlet.supported-public-render-parameter=resetCur",
"javax.portlet.supported-public-render-parameter=tag",
"javax.portlet.version=3.0"
},
service = Portlet.class
)
public class BlogsPortlet extends BaseBlogsPortlet {
@Override
public void render(
RenderRequest renderRequest, RenderResponse renderResponse)
throws IOException, PortletException {
renderRequest.setAttribute(AssetWebKeys.ASSET_HELPER, _assetHelper);
renderRequest.setAttribute(TrashWebKeys.TRASH_HELPER, _trashHelper);
super.render(renderRequest, renderResponse);
}
@Override
protected void doDispatch(
RenderRequest renderRequest, RenderResponse renderResponse)
throws IOException, PortletException {
renderRequest.setAttribute(
BlogsViewEntryContentDisplayContext.class.getName(),
new BlogsViewEntryContentDisplayContext(
_assetDisplayPageFriendlyURLProvider,
_portal.getLiferayPortletRequest(renderRequest),
_portal.getLiferayPortletResponse(renderResponse)));
super.doDispatch(renderRequest, renderResponse);
}
@Reference
private AssetDisplayPageFriendlyURLProvider
_assetDisplayPageFriendlyURLProvider;
@Reference
private AssetHelper _assetHelper;
@Reference
private Portal _portal;
@Reference(
target = "(&(release.bundle.symbolic.name=com.liferay.blogs.web)(&(release.schema.version>=1.2.0)(!(release.schema.version>=2.0.0))))"
)
private Release _release;
@Reference
private TrashHelper _trashHelper;
}