Skip to content

Commit c8a15fb

Browse files
author
Jace Bennest
committed
remove example links
1 parent ca680ca commit c8a15fb

File tree

2 files changed

+69
-39
lines changed

2 files changed

+69
-39
lines changed

src/components/sections/Content.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<div class="drupal-content product__build">
3-
<a class="arrow_up" @click="show = !show" :class="show ? 'down' : ''"></a>
3+
<a class="arrow_up" @click="show = !show" :class="show ? '' : 'down'"></a>
44
<div class="top__info">
55
<div class="box__content">
66
<h2>

src/store/sections.js

Lines changed: 68 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -29,38 +29,38 @@ const sections = {
2929
},
3030
],
3131
},
32-
/*
33-
packages: {
34-
title: 'Packages',
35-
description: '',
36-
options: [
37-
{
38-
title: 'Base',
39-
description: 'Nothing extra pre-selected',
40-
location: locations.LOCATION_INTL,
41-
default: true,
42-
},
43-
{
44-
title: 'Catalog',
45-
description: 'Extra functionality commonly needed for a traditional catalog style site.',
46-
location: locations.LOCATION_INTL,
47-
enabled: false,
48-
},
49-
{
50-
title: 'Events',
51-
description: 'Extra functionality for events, such as concerts or training, with some of the more traditional product based extras removed.',
52-
location: locations.LOCATION_INTL,
53-
enabled: false,
54-
},
55-
{
56-
title: 'Subscriptions',
57-
description: 'Recurring billing functionality, to allow for subscriptions, licensing and other time based billing functionality.',
58-
location: locations.LOCATION_INTL,
59-
enabled: false,
60-
},
61-
],
62-
},
63-
*/
32+
/*
33+
packages: {
34+
title: 'Packages',
35+
description: '',
36+
options: [
37+
{
38+
title: 'Base',
39+
description: 'Nothing extra pre-selected',
40+
location: locations.LOCATION_INTL,
41+
default: true,
42+
},
43+
{
44+
title: 'Catalog',
45+
description: 'Extra functionality commonly needed for a traditional catalog style site.',
46+
location: locations.LOCATION_INTL,
47+
enabled: false,
48+
},
49+
{
50+
title: 'Events',
51+
description: 'Extra functionality for events, such as concerts or training, with some of the more traditional product based extras removed.',
52+
location: locations.LOCATION_INTL,
53+
enabled: false,
54+
},
55+
{
56+
title: 'Subscriptions',
57+
description: 'Recurring billing functionality, to allow for subscriptions, licensing and other time based billing functionality.',
58+
location: locations.LOCATION_INTL,
59+
enabled: false,
60+
},
61+
],
62+
},
63+
*/
6464
drupalBase: {
6565
title: 'Distribution',
6666
description: 'Distributions are full copies of Drupal that include Drupal Core, along with additional modules and libraries. Selecting your distribution will allow for unique modules to be included in your setup to conduct business within your specific vertical. If you’re unsure, that’s okay - just select Drupal.',
@@ -71,36 +71,38 @@ const sections = {
7171
description: 'Stock Drupal, nothing extra.',
7272
location: locations.LOCATION_INTL,
7373
base: 'drupal',
74-
package_link: 'http://google.com',
74+
package_link: 'https://www.drupal.org',
7575
default: true,
7676
},
7777
{
7878
title: 'Lightning',
7979
description: 'A authoring based distribution built by Acquia, useful for managing lots of content that needs reviews and editors.',
8080
location: locations.LOCATION_INTL,
81-
package_link: 'http://yahoo.com',
81+
package_link: 'https://lightning.acquia.com/',
8282
base: 'lightning',
8383
},
8484
{
8585
title: 'Open Social',
8686
description: 'Open Social is a distribution for building social communities and intranets, a successor to Drupal Commons.',
8787
location: locations.LOCATION_INTL,
88-
package_link: 'http://yahoo.com',
88+
package_link: 'https://www.getopensocial.com/',
8989
base: 'open-social',
9090
},
9191
{
9292
title: 'Thunder',
9393
description: 'Not yet available with Kickstart.',
94-
// description: 'A publishing based distribution for content publishers, like news or magazine sites.',
94+
// description: 'A publishing based distribution for content
95+
// publishers, like news or magazine sites.',
9596
location: locations.LOCATION_INTL,
9697
base: 'thunder',
97-
package_link: 'http://yahoo.com',
98+
package_link: 'https://thunder.org/',
9899
enabled: false,
99100
},
100101
{
101102
title: 'OpenEDU',
102103
description: 'Not yet available with Kickstart.',
103-
// description: 'A pre-configured Drupal 8 implementation specifically built with the needs of higher education in mind.',
104+
// description: 'A pre-configured Drupal 8 implementation specifically
105+
// built with the needs of higher education in mind.',
104106
location: locations.LOCATION_INTL,
105107
base: 'openedu',
106108
enabled: false,
@@ -118,6 +120,7 @@ const sections = {
118120
sponsored: true,
119121
composer_package: 'drupal/commerce_paypal',
120122
location: locations.LOCATION_INTL,
123+
package_link: 'https://www.drupal.org/project/commerce_paypal',
121124
},
122125
{
123126
title: 'BrainTree',
@@ -126,6 +129,7 @@ const sections = {
126129
sponsored: true,
127130
composer_package: 'drupal/commerce_braintree',
128131
location: locations.LOCATION_INTL,
132+
package_link: 'https://www.drupal.org/project/commerce_braintree',
129133
},
130134
{
131135
title: 'Auth.net',
@@ -134,6 +138,7 @@ const sections = {
134138
sponsored: true,
135139
composer_package: 'drupal/commerce_authnet',
136140
location: locations.LOCATION_INTL,
141+
package_link: 'https://www.drupal.org/project/commerce_authnet',
137142
},
138143
{
139144
title: 'Square',
@@ -142,54 +147,63 @@ const sections = {
142147
sponsored: true,
143148
composer_package: 'drupal/commerce_square',
144149
location: locations.LOCATION_INTL,
150+
package_link: 'https://www.drupal.org/project/commerce_square',
145151
},
146152
{
147153
title: 'Moneris',
148154
description: '',
149155
composer_package: 'drupal/commerce_moneris',
150156
location: locations.LOCATION_NA,
157+
package_link: 'https://www.drupal.org/project/commerce_moneris',
151158
},
152159
{
153160
title: 'Stripe',
154161
description: '',
155162
composer_package: 'drupal/commerce_stripe',
156163
location: locations.LOCATION_INTL,
164+
package_link: 'https://www.drupal.org/project/commerce_stripe',
157165
},
158166
{
159167
title: 'Vantiv',
160168
description: '',
161169
composer_package: 'drupal/commerce_vantiv',
162170
location: locations.LOCATION_INTL,
171+
package_link: 'https://www.drupal.org/project/commerce_vantiv',
163172
},
164173
{
165174
title: 'Paytrail',
166175
description: '',
167176
composer_package: 'drupal/commerce_paytrail',
168177
location: locations.LOCATION_INTL,
178+
package_link: 'https://www.drupal.org/project/commerce_paytrail',
169179
},
170180
{
171181
title: 'Payplug',
172182
description: '',
173183
composer_package: 'drupal/commerce_payplug',
174184
location: locations.LOCATION_INTL,
185+
package_link: 'https://www.drupal.org/project/commerce_payplug',
175186
},
176187
{
177188
title: 'PayUMoney',
178189
description: '',
179190
composer_package: 'drupal/commerce_payumoney',
180191
location: locations.LOCATION_INTL,
192+
package_link: 'https://www.drupal.org/project/commerce_payumoney',
181193
},
182194
{
183195
title: 'AliPay',
184196
description: '',
185197
composer_package: 'drupal/commerce_alipay',
186198
location: locations.LOCATION_ASIA,
199+
package_link: 'https://www.drupal.org/project/commerce_alipay',
187200
},
188201
{
189202
title: 'CCAvenue',
190203
description: '',
191204
composer_package: 'drupal/commerce_ccavenue',
192205
location: locations.LOCATION_INTL,
206+
package_link: 'https://www.drupal.org/project/commerce_ccavenue',
193207
}
194208
],
195209
multiselect: true,
@@ -203,31 +217,36 @@ const sections = {
203217
description: 'The basic options for shipping, allows simple flat rate shipping options.',
204218
composer_package: 'drupal/commerce_shipping',
205219
location: locations.LOCATION_INTL,
220+
package_link: 'https://www.drupal.org/project/commerce_shipping',
206221
},
207222
{
208223
title: 'UPS',
209224
description: 'Provides real-time rates from UPS.',
210225
composer_package: 'drupal/commerce_ups',
211226
location: locations.LOCATION_INTL,
227+
package_link: 'https://www.drupal.org/project/commerce_ups',
212228
},
213229
{
214230
title: 'FedEx',
215231
description: 'Provides real-time rates from Fedex.',
216232
composer_package: 'drupal/commerce_fedex',
217233
location: locations.LOCATION_INTL,
234+
package_link: 'https://www.drupal.org/project/commerce_fedex',
218235
},
219236
{
220237
title: 'USPS',
221238
description: 'Not Yet Available.',
222239
composer_package: 'drupal/commerce_usps',
223240
location: locations.LOCATION_NA,
241+
package_link: 'https://www.drupal.org/project/commerce_usps',
224242
enabled: false,
225243
},
226244
{
227245
title: 'Postcode',
228246
description: 'Provides simple postal code based shipping options that can be provided via CSV.',
229247
composer_package: 'drupal/commerce_postcode_delivery',
230248
location: locations.LOCATION_INTL,
249+
package_link: 'https://www.drupal.org/project/commerce_postcode_delivery',
231250
}
232251
],
233252
multiselect: true,
@@ -248,19 +267,22 @@ const sections = {
248267
description: '',
249268
composer_package: 'drupal/commerce_avatax',
250269
location: locations.LOCATION_INTL,
270+
package_link: 'https://www.drupal.org/project/commerce_avatax',
251271
},
252272
{
253273
title: 'Quickbooks',
254274
description: '',
255275
composer_package: 'drupal/commerce_qb_webconnect',
256276
location: locations.LOCATION_INTL,
277+
package_link: 'https://www.drupal.org/project/commerce_qb_webconnect',
257278
enabled: false,
258279
},
259280
{
260281
title: 'Quickbooks Online',
261282
description: '',
262283
composer_package: 'drupal/commerce_qbo_ui',
263284
location: locations.LOCATION_INTL,
285+
package_link: 'https://www.drupal.org/project/commerce_qbo_ui',
264286
enabled: false,
265287
}
266288
],
@@ -275,24 +297,28 @@ const sections = {
275297
description: '',
276298
composer_package: 'drupal/search_api',
277299
location: locations.LOCATION_INTL,
300+
package_link: 'https://www.drupal.org/project/search_api',
278301
},
279302
{
280303
title: 'Apache Solr',
281304
description: '',
282305
composer_package: 'drupal/search_api_solr',
283306
location: locations.LOCATION_INTL,
307+
package_link: 'https://www.drupal.org/project/search_api_solr',
284308
},
285309
{
286310
title: 'ElasticSearch',
287311
description: '',
288312
composer_package: 'drupal/elasticsearch_connector',
289313
location: locations.LOCATION_INTL,
314+
package_link: 'https://www.drupal.org/project/elasticsearch_connector',
290315
},
291316
{
292317
title: 'Wishlist',
293318
description: '',
294319
composer_package: 'drupal/commerce_wishlist',
295320
location: locations.LOCATION_INTL,
321+
package_link: 'https://www.drupal.org/project/commerce_wishlist',
296322
}
297323
],
298324
multiselect: true,
@@ -311,21 +337,25 @@ const sections = {
311337
title: 'Ubercart',
312338
description: 'Migrate your content over from a Drupal 6 or Drupal 7 Ubercart install.',
313339
composer_package: 'drupal/commerce_migrate',
340+
package_link: 'https://www.drupal.org/project/commerce_migrate',
314341
},
315342
{
316343
title: 'Commerce',
317344
description: 'Migrate your content from an existing Drupal 7 Commerce install.',
318345
composer_package: 'drupal/commerce_migrate',
346+
package_link: 'https://www.drupal.org/project/commerce_migrate',
319347
},
320348
{
321349
title: 'Magento',
322350
description: 'Migrate your content from an existing Magento setup.',
323351
composer_package: 'drupal/commerce_migrate',
352+
package_link: 'https://www.drupal.org/project/commerce_migrate',
324353
},
325354
{
326355
title: 'Shopify',
327356
description: 'Migrate your content from an existing Shopify setup.',
328357
composer_package: 'drupal/commerce_migrate',
358+
package_link: 'https://www.drupal.org/project/commerce_migrate',
329359
enabled: false,
330360
},
331361
{

0 commit comments

Comments
 (0)