本文整理汇总了Python中Products.ATContentTypes.content.base.ATCTContent.widget方法的典型用法代码示例。如果您正苦于以下问题:Python ATCTContent.widget方法的具体用法?Python ATCTContent.widget怎么用?Python ATCTContent.widget使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Products.ATContentTypes.content.base.ATCTContent
的用法示例。
在下文中一共展示了ATCTContent.widget方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: widget
# 需要导入模块: from Products.ATContentTypes.content.base import ATCTContent [as 别名]
# 或者: from Products.ATContentTypes.content.base.ATCTContent import widget [as 别名]
def widget(self, field_name, mode='view', field=None, **kwargs):
""" special handling for uploaded_pdfFile widget
"""
bib_tool = getToolByName(self, 'portal_bibliography')
pdf_file = self.getPdf_file()
if (pdf_file and self.isPdfUploadAllowedForThisType() and \
bib_tool.allowPdfUploadPortalPolicy()) and \
((field_name == 'uploaded_pdfFile') or \
(field == self.Schema().getField('uploaded_pdfFile'))):
if pdf_file:
field_name = 'uploaded_pdfFile'
if field is None:
field = pdf_file.Schema()['file']
widget = field.widget
return renderer.render(field_name,
mode,
widget,
pdf_file,
field=field,
**kwargs)
else:
return BaseContent.widget(self,
field_name=field_name,
mode=mode,
field=field,
**kwargs)