現在、マルチサイトの Django Web サイトを構築しています。ベース リンク プラグインの機能をオーバーライドしてcms.plugins.link
、他のサイト内の他のページにリンクできるようにしたいと考えています。
デフォルトのエディターWYMeditorを使用しています。
クラスを使用して必要な機能を提供するカスタム CMSPlugin 抽象モデルを既に作成しており、cms.models.fields.PageField
特注のプラグイン内で使用しています。
私が確信していないのは、既存のcms.plugins.link
モデルを変更するか、何らかの方法でこれを拡張する方法 (または場合) です。単純なインスタンスで、この変更されたプラグインを利用可能なプラグインリスト内で利用できるようにする必要があります。cms.plugins.text
価値のあるものとして、カスタム プラグインのコードは次のとおりです。
class PluginWithLinks(models.Model):
"""
There are a number of plugins which use links to other on-site or off-site
pages or offsite. This information is abstracted out here. Simply extend
this class if you need a class which has links as a core part of its
functionality.
"""
page_link = PageField(
verbose_name="page",
help_text="Select an existing page to link to.",
blank=True,
null=True
)
url = models.CharField(
"link", max_length=255, blank=True, null=True,
help_text="Destination URL. If chosen, this will be used instead of \
the page link. Must include http://")
link_text = models.CharField(
blank=True, null=True, max_length=100, default='More', help_text='The \
link text to be displayed.')
target = models.CharField(
"target", blank=True, max_length=100,
choices=((
("", "same window"),
("_blank", "new window"),
("_parent", "parent window"),
("_top", "topmost frame"),
))
)
class Meta:
abstract = True
@property
def link(self):
if self.url:
return self.url
elif self.page_link:
full_url = "http://%s%s" % (
self.page_link.site.domain,
self.page_link.get_absolute_url()
)
return full_url
else:
return ''