uninstall djangocms-snippet 2.0.0

This commit is contained in:
2018-03-15 11:24:41 +00:00
parent 32b98abeaa
commit c1fe63b2b6
5 changed files with 0 additions and 40 deletions

View File

@@ -1,6 +0,0 @@
{
"installed-apps": [
"djangocms_snippet"
],
"package-name": "djangocms-snippet"
}

View File

@@ -1,27 +0,0 @@
# -*- coding: utf-8 -*-
from aldryn_client import forms
class Form(forms.BaseForm):
editor_theme = forms.CharField(
'Custom editor theme, (e.g. "twilight", default: "github")',
required=False,
)
editor_mode = forms.CharField(
'Custom editor mode (e.g. "javascript", default: "html")',
required=False,
)
enable_search = forms.CheckboxField(
'Enable snippet content to be searchable.',
required=False,
initial=False,
)
def to_settings(self, data, settings):
if data['editor_theme']:
settings['DJANGOCMS_SNIPPET_THEME'] = data['editor_theme']
if data['editor_mode']:
settings['DJANGOCMS_SNIPPET_MODE'] = data['editor_mode']
if data['enable_search']:
settings['DJANGOCMS_SNIPPET_SEARCH'] = data['enable_search']
return settings

View File

@@ -1,5 +0,0 @@
{
"editor_mode": null,
"editor_theme": null,
"enable_search": false
}