Dynamic views¶
- Introduction
- Default dynamic views
- Creating a dynamic view
- Working around broken default view
- Checking that your view is available
- Getting active layout
- Changing default view programmatically
- Default page
- Disabling dynamic views
- Setting a view using marker interfaces
- Migration script from default view to another
- Method aliases
- Other resources
Description
How to programmatically change the active view of a Plone content item
Introduction¶
Dynamic views are views which the content editor can choose for his or her content from the Display... drop-down menu in the green edit frame.
By default, Plone comes with dynamic views for:
- Folder listing
- Summary
- Photo album
- etc.
The default view can be also a content item picked from the folder. Available content item types can be managed from the ZMI at portal_properties -> site_properties -> default_page_types.
More info
Permission for changing the view template of an item¶
A user needs the Modify view template permission to use the dynamic view dropdown. If you want to restrict this ability, grant or revoke this permission as appropriate.
This can be useful for some content-types like Dexterity ones, where dynamic views are enabled by default, and the easiest way to disable them is using this permission.
Default dynamic views¶
Plone supports a few dynamic views for folders out of the box:
-
Summary view (
folder_summary_view
) -
Tabular view (
folder_tabular_view
) -
Album view (
atct_album_view
) -
Listing (
folder_listing
) -
Full view (
folder_full_view
)
These are defined in
portal_types information
for the Folder content type and mapped to the
Display menu all over in ZCML using
browser:menuItem
as described below.
Newly created folders have this dynamic view applied:
-
Products.CMFPlone/skins/plone_content/folder_summary_view.pt
(a non-view based old style Zope 2 page template)
More info
Creating a dynamic view¶
Here are instructions how to create your own dynamic view.
There is also an example product Listless view, which provides "no content listing" view for Folder content types.
Working around broken default view¶
If you manage to:
- Create a new view
- set it to the default as a folder
- and this view has a bug
... you cannot access the folder anymore, because you are taken to the broken view stack trace instead instead of rendering the green edit menubar.
The fix is to reset the view by browsing to the
select_default_view
directly. Access your folder like this:
http://servername/plonesite/folder/select_default_view
Checking that your view is available¶
Products.CMFDynamicViewFTI.browserdefault.BrowserDefaultMixin.getAvailableLayouts()
returns the list of known layouts in the following format:
[('folder_summary_view', 'Summary view'),
('folder_tabular_view', 'Tabular view'),
('atct_album_view', 'Thumbnail view'),
('folder_listing', 'Standard view'),
('product_listing', u'Product listing')]
So to see if your view is available, check it against the ids from that result:
layout_ids = [id for id, title in self.portal.folder.getAvailableLayouts() ]
self.assertTrue("product_list" in layout_ids)
Getting active layout¶
>>> self.portal.folder.getLayout()
'atct_album_view'
Changing default view programmatically¶
self.portal.folder.setLayout("product_listing")
Default page¶
The default page is a content item chosen to be displayed when the visitor arrives at a URL without any subpages or views selected.
This is useful if you are doing the folder listing manually and you want to replace the default view.
The
default_page
helper view can be used to manipulate default pages.
Getting the default page:
# Filter out default content
container = self.getListingContainer()
default_page_helper = getMultiAdapter(
(container, self.request), name='default_page')
# Return content object which is the default page or None if not set
default_page = default_page_helper.getDefaultPage(container)
Another example how to use this:
from Products.CMFCore.interfaces import IFolderish
def hasTabs(self):
"""Determine whether the page itself, or default page, in the case
of folders, has setting showTabs set true.
Show tab setting defined in dynamicpage.py.
"""
page = self.context
try:
if IFolderish.providedBy(self.context):
folder = self.context
default_page_helper = getMultiAdapter(
(folder, self.request), name='default_page')
page_name = default_page_helper.getDefaultPage(folder)
page = folder[page_name]
except:
pass
tabs = getattr(page, "showTabs", False)
return tabs
Todo
Bare except?
Setting the default page can be done as simply as setting
a
default_page
attribute on the folder to the id of the default page:
folder.default_page = "my_content_id"
More information can be found in
Disabling dynamic views¶
Add to your content type class:
def canSetDefaultPage(self):
"""
Override BrowserDefaultMixin because default page stuff doesn't make
sense for topics.
"""
return False
Setting a view using marker interfaces¶
If you need to have a view for few individual content items only, it is best to do this using marker interfaces.
- Register a view against a marker interface
- Assign this marker interface to a content item using the Zope Management Interface (ZMI)
For more info, see
Migration script from default view to another¶
Below is a script snippet which allows you to change the default view for all folders to another type. You can execute the script through the ZMI as a Python Script.
Script code:
from StringIO import StringIO
orignal = 'fancy_zoom_view'
target = 'atct_album_view'
for brain in context.portal_catalog(portal_type="Folder"):
obj = brain.getObject()
if getattr(obj, "layout", None) == orignal:
print "Updated:" + obj.absolute_url()
obj.setLayout(target)
return printed
This will allow you to migrate from
collective.fancyzoom
to Plone 4's default album view or
Products.PipBox
.
Method aliases¶
Method aliases allow you to redirect basic actions (view,
edit) to content-type specific views. Aliases are
configured in
portal_types
.