-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.xml
124 lines (116 loc) · 5.16 KB
/
manifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<?xml version="1.0" encoding="UTF-8"?>
<manifest
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/shopware/platform/trunk/src/Core/Framework/App/Manifest/Schema/manifest-2.0.xsd">
<meta>
<name>SwagBraintreeApp</name>
<label>Braintree App</label>
<label lang="de-DE">Braintree App</label>
<description>With the “PayPal Braintree” app developed by Shopware, you can now easily integrate one of the most popular solutions for credit card payments into your store.</description>
<description lang="de-DE">Mit der App “PayPal Braintree” App von Shopware integrierst du ab sofort eine der beliebtesten Lösungen für Kreditkartenzahlungen ganz einfach in deinen Shop.</description>
<author>shopware AG</author>
<copyright>(c) by shopware AG</copyright>
<version>2.2.0</version>
<icon>Resources/plugin.webp</icon>
<license>MIT</license>
<compatibility>~6.6.0</compatibility>
</meta>
<setup>
<registrationUrl>https://braintree.shopware.com/app/lifecycle/register</registrationUrl>
</setup>
<webhooks>
<webhook name="appActivated" url="https://braintree.shopware.com/app/lifecycle/activate" event="app.activated"/>
<webhook name="appDeactivated" url="https://braintree.shopware.com/app/lifecycle/deactivate" event="app.deactivated"/>
<webhook name="appDeleted" url="https://braintree.shopware.com/app/lifecycle/delete" event="app.deleted"/>
</webhooks>
<admin>
<base-app-url>https://braintree.shopware.com/admin-sdk</base-app-url>
</admin>
<gateways>
<checkout>https://braintree.shopware.com/api/gateway/checkout</checkout>
</gateways>
<payments>
<payment-method>
<identifier>credit_card</identifier>
<name>Credit or Debit Card (by Braintree)</name>
<name lang="de-DE">Kredit- oder Debitkarte (von Braintree)</name>
<pay-url>https://braintree.shopware.com/api/pay</pay-url>
<icon>Resources/config/plugin.jpg</icon>
</payment-method>
</payments>
<custom-fields>
<custom-field-set>
<name>swag_braintree_app_product</name>
<label>Braintree by PayPal</label>
<label lang="de-DE">Braintree von PayPal</label>
<related-entities>
<product/>
</related-entities>
<fields>
<text name="swag_braintree_app_commodity_code">
<position>1</position>
<placeholder>e.g. 81162006</placeholder>
<placeholder lang="de-DE">bspw. 81162006</placeholder>
<help-text>United Nations Standard Products and Services Code (UNSPSC). Search https://www.unspsc.org/ for more.</help-text>
<label>UNSPSC commodity code</label>
<label lang="de-DE">UNSPSC Warenkennzeichnungscode</label>
<allow-cart-expose>true</allow-cart-expose>
</text>
</fields>
</custom-field-set>
</custom-fields>
<permissions>
<read>sales_channel</read>
<read>country_state</read>
<read>payment_method</read>
<read>payment_method_translation</read>
<read>customer</read>
<read>order_transaction</read>
<read>app_payment_method</read>
<read>sales_channel_translation</read>
<read>currency</read>
<read>language</read>
<read>country</read>
<read>shipping_method</read>
<read>order</read>
<read>currency_translation</read>
<read>promotion_discount_prices</read>
<read>currency_country_rounding</read>
<read>sales_channel_domain</read>
<read>system_config</read>
<read>product_visibility</read>
<read>newsletter_recipient</read>
<read>number_range_sales_channel</read>
<read>promotion_sales_channel</read>
<read>document_base_config_sales_channel</read>
<read>product_review</read>
<read>order_customer</read>
<read>seo_url</read>
<read>seo_url_template</read>
<read>main_category</read>
<read>product_export</read>
<read>customer_group</read>
<read>landing_page</read>
<read>customer_wishlist</read>
<read>theme</read>
<create>notification</create>
<create>payment_method</create>
<create>payment_method_translation</create>
<create>sales_channel</create>
<create>customer</create>
<create>order_transaction</create>
<create>app_payment_method</create>
<update>payment_method_translation</update>
<update>sales_channel</update>
<update>customer</update>
<update>order_transaction</update>
<update>payment_method</update>
<update>app_payment_method</update>
<delete>payment_method</delete>
<delete>payment_method_translation</delete>
<delete>sales_channel</delete>
<delete>customer</delete>
<delete>order_transaction</delete>
<delete>app_payment_method</delete>
</permissions>
</manifest>