Re-introduce plugin categories

This commit is contained in:
Raphael Michel
2020-02-08 12:38:43 +01:00
parent 9984fe97ba
commit bb5c7c5ad7
14 changed files with 111 additions and 58 deletions

View File

@@ -12,6 +12,7 @@ class BadgesApp(AppConfig):
name = _("Badges")
author = _("the pretix team")
version = version
category = "FEATURE"
description = _("This plugin allows you to generate badges or name tags for your attendees.")
def ready(self):

View File

@@ -12,6 +12,7 @@ class BankTransferApp(AppConfig):
class PretixPluginMeta:
name = _("Bank transfer")
author = _("the pretix team")
category = 'PAYMENT'
version = version
description = _("This plugin allows you to receive payments " +
"via bank transfer ")

View File

@@ -12,6 +12,7 @@ class ManualPaymentApp(AppConfig):
name = _("Manual payment")
author = _("the pretix team")
version = version
category = 'PAYMENT'
description = _("This plugin adds a customizable payment method for manual processing.")

View File

@@ -13,6 +13,7 @@ class PaypalApp(AppConfig):
name = _("PayPal")
author = _("the pretix team")
version = version
category = 'PAYMENT'
description = _("This plugin allows you to receive payments via PayPal")
def ready(self):

View File

@@ -13,6 +13,7 @@ class PretixdroidApp(AppConfig):
author = _("the pretix team")
version = version
visible = True
category = 'INTEGRATION'
description = _("This plugin allows you to use the pretixdroid and pretixdesk apps for your event.")
def ready(self):

View File

@@ -13,6 +13,7 @@ class ReportsApp(AppConfig):
name = _("Report exporter")
author = _("the pretix team")
version = version
category = 'FORMATS'
description = _("This plugin allows you to generate printable reports about your sales.")
def ready(self):

View File

@@ -12,6 +12,7 @@ class ReturnURLApp(AppConfig):
name = _("Redirection from order page")
author = _("the pretix team")
version = version
category = 'API'
description = _("This plugin allows to link to payments and redirect back afterwards. This is useful in "
"combination with our API.")

View File

@@ -11,6 +11,7 @@ class SendMailApp(AppConfig):
class PretixPluginMeta:
name = _("Send out emails")
author = _("the pretix team")
category = 'FEATURE'
version = version
description = _("This plugin allows you to send out emails " +
"to all your customers.")

View File

@@ -12,6 +12,7 @@ class StatisticsApp(AppConfig):
name = _("Statistics")
author = _("the pretix team")
version = version
category = 'FEATURE'
description = _("This plugin shows you various statistics.")
def ready(self):

View File

@@ -13,6 +13,7 @@ class StripeApp(AppConfig):
name = _("Stripe")
author = _("the pretix team")
version = version
category = 'PAYMENT'
description = _("This plugin allows you to receive credit card payments " +
"via Stripe")

View File

@@ -13,6 +13,7 @@ class TicketOutputPdfApp(AppConfig):
name = _("PDF ticket output")
author = _("the pretix team")
version = version
category = 'FORMATS'
description = _("This plugin allows you to print out tickets as PDF files")
def ready(self):