本文整理汇总了Python中cms.models.pluginmodel.CMSPlugin.__subclasses__方法的典型用法代码示例。如果您正苦于以下问题:Python CMSPlugin.__subclasses__方法的具体用法?Python CMSPlugin.__subclasses__怎么用?Python CMSPlugin.__subclasses__使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cms.models.pluginmodel.CMSPlugin
的用法示例。
在下文中一共展示了CMSPlugin.__subclasses__方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: str
# 需要导入模块: from cms.models.pluginmodel import CMSPlugin [as 别名]
# 或者: from cms.models.pluginmodel.CMSPlugin import __subclasses__ [as 别名]
must return a unicode string
"""
return str(self.latest_entries).decode('utf8')
def copy_relations(self, oldinstance):
self.tags = oldinstance.tags.all()
def get_posts(self):
posts = Post.published.filter_by_language(self.language)
tags = self.tags.values_list('pk', flat=True)
if tags.exists():
posts = posts.filter(tags__in=tags)
return posts[:self.latest_entries]
class AuthorsPlugin(CMSPlugin):
def get_authors(self):
return generate_slugs(get_blog_authors())
def force_language(sender, instance, **kwargs):
if issubclass(sender, CMSPlugin) and instance.placeholder \
and instance.placeholder.slot == 'aldryn_blog_post_content':
instance.language = settings.ALDRYN_BLOG_PLUGIN_LANGUAGE
for model in CMSPlugin.__subclasses__():
models.signals.pre_save.connect(force_language, sender=model)