H.abdi
H.abdi

Reputation: 1

Liferay 6.2 - how to use Asset Publisher in JSP?

I want to add an asset publisher in my Portlet and i want to configure the asset and any other portlets to be already configured to be able to deploy (drag and drop) anytime and anywhere in my site so would you please help me to find a solution for my problem

Thanks

Upvotes: 0

Views: 355

Answers (1)

Chris Maggiulli
Chris Maggiulli

Reputation: 3824

Asset Publisher

The asset publisher can be configured to use inside your custom plugin portlet project using the associated taglibs and SDK. For the Asset functionality the following programmatic definitions will be used.

Taglibs

  • asset-categories-error
  • asset-categories-navigation
  • asset-categories-selector
  • asset-categories-summary
  • asset-links
  • asset-tags-error
  • asset-tags-navigation
  • asset-tags-selector
  • asset-tags-summary

Taglibs

Packages

  • com.liferay.portlet.asset
  • com.liferay.portlet.asset.model
  • com.liferay.portlet.asset.service
  • com.liferay.portlet.asset.service.persistence
  • com.liferay.portlet.asset.util.comparator
  • com.liferay.portlet.assetpublisher.util

JavaDocs

Conclusion

The above information will give you a good place to begin using the Asset functionality in your custom plugin project. I realize this does not give you a concrete explanation of the functionality but in order to do that you need a specific question. The Asset functionality is too broad of a topic to describe in a post. Please reference the above material and ask a more pointed question

Upvotes: 1

Related Questions