本文整理汇总了Python中cml.modules.common.module.ModuleBase.__init__方法的典型用法代码示例。如果您正苦于以下问题:Python ModuleBase.__init__方法的具体用法?Python ModuleBase.__init__怎么用?Python ModuleBase.__init__使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cml.modules.common.module.ModuleBase
的用法示例。
在下文中一共展示了ModuleBase.__init__方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from cml.modules.common.module import ModuleBase [as 别名]
# 或者: from cml.modules.common.module.ModuleBase import __init__ [as 别名]
def __init__(self, Luna, LunaSQL):
ModuleBase.__init__(self, Luna, LunaSQL)
self.template = "module/admin/base/module-cms-edit.html"
self.module_key = "admin-cms-edit"
self.name_mapping = {
"status": u"状态",
"title": u"文章标题",
"bread": u"文章bread",
"subject": u"subject",
"content": u"文章内容",
"date": u"时间",
"source": u"来源",
"class": u"schema_id",
"image_list": u"图片",
"url": u"文章url",
"del_reason": u"删除原因",
"tag": u"tags",
"data_weight": u"文章权重",
"cover": u"封面",
"brief": u"文章简介",
}