-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsitemap.json
1330 lines (1330 loc) · 44.4 KB
/
sitemap.json
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"structure": [
{
"displayname": {
"en": "Account management",
"nl": "Account management"
},
"description": {
"en": "Manage your customers and their subscriptions. Creating new customer accounts, subscriptions and more.",
"nl": "Manage your customers and their subscriptions. Creating new customer accounts, subscriptions and more."
},
"type": "folder",
"name": "account_management",
"items": [
{
"displayname": {
"en": "My customers",
"nl": "My customers"
},
"description": {
"en": "Manage your customers and their subscriptions, domain names, etc",
"nl": "IManage your customers and their subscriptions, domain names, etc"
},
"type": "folder",
"name": "my_customers",
"items": [
{
"displayname": {
"en": "Adding customers",
"nl": "Adding customers"
},
"description": {
"en": "Add a new customer",
"nl": "IAdd a new customer"
},
"path": "/account_management/my_customers/add_customer.md",
"permalink": "adding-customer",
"type": "file"
},
{
"displayname": {
"en": "Logging in as a Customer"
},
"description": {
"en": "How to log in as a customer"
},
"path": "/account_management/my_customers/login_as_customer.md",
"permalink": "login-as-customer",
"type": "file"
},
{
"displayname": {
"en": "Customer users",
"nl": "Customer users"
},
"description": {
"en": "View, add and edit users for this customer",
"nl": "View, add and edit users for this customer"
},
"path": "/account_management/my_customers/customer_users.md",
"permalink": "customer-users",
"type": "file"
},
{
"displayname": {
"en": "Customer domain names",
"nl": "Customer domain names"
},
"description": {
"en": "Manage domains for this customer",
"nl": "IManage domains for this customer"
},
"path": "/account_management/my_customers/customer_domainnames.md",
"permalink": "customer-domainnames",
"type": "file"
},
{
"displayname": {
"en": "Customer subscriptions",
"nl": "Klant abonnementen"
},
"description": {
"en": "View, add and edit subscriptions for this customer",
"nl": "View, add and edit subscriptions for this customer"
},
"path": "/account_management/my_customers/customer_subscriptions.md",
"permalink": "customer-subscriptions",
"type": "file"
},
{
"displayname": {
"en": "Customer invoices",
"nl": "Klant facturen"
},
"description": {
"en": "View and create invoices for this customer",
"nl": "View and create invoices for this customer"
},
"path": "/account_management/my_customers/customer_invoices.md",
"permalink": "customer-invoices",
"type": "file"
},
{
"displayname": {
"en": "Customer transactions",
"nl": "Customer transactions"
},
"description": {
"en": "View customer transactions",
"nl": "View customer transactions"
},
"path": "/account_management/my_customers/customer_transactions.md",
"permalink": "customer-transactions",
"type": "file"
},
{
"displayname": {
"en": "Customer orders",
"nl": "Klant bestellingen"
},
"description": {
"en": "View or process pending orders from this customer",
"nl": "View or process pending orders from this customer"
},
"path": "/account_management/my_customers/customer_orders.md",
"permalink": "customer-orders",
"type": "file"
},
{
"displayname": {
"en": "Customer notes",
"nl": "Klant notities"
},
"description": {
"en": "View, add and edit notes for this customer",
"nl": "View, add and edit notes for this customer"
},
"path": "/account_management/my_customers/customer_notes.md",
"permalink": "customer-notes",
"type": "file"
},
{
"displayname": {
"en": "Customer Payments",
"nl": "Klant betalingen"
},
"description": {
"en": "Manage customer payments",
"nl": "Beheer klant betalingen"
},
"path": "/account_management/my_customers/customer_payments.md",
"permalink": "customer-payments",
"type": "file"
},
{
"displayname": {
"en": "Customer affiliate",
"nl": "Customer affiliate"
},
"description": {
"en": "Affiliate overview for this customer",
"nl": "Affiliate overview for this customer"
},
"path": "/account_management/my_customers/customer_affiliate.md",
"permalink": "customer-affiliate",
"type": "file"
},
{
"displayname": {
"en": "Customer documents",
"nl": "Klant documenten"
},
"description": {
"en": "View, add and edit documents for this customer",
"nl": "Bekijken, verwijderen en bewerken van klant documenten"
},
"path": "/account_management/my_customers/customer_documents.md",
"permalink": "customer-documents",
"type": "file"
},
{
"displayname": {
"en": "Import customers",
"nl": "Import klanten"
},
"description": {
"en": "Import your customers with an excel sheet",
"nl": "Importeer je klanten vanuit een excel sheet"
},
"path": "/account_management/my_customers/import_customers.md",
"permalink": "import-customers",
"type": "file"
}
]
},
{
"displayname": {
"en": "My subscriptions",
"nl": "Mijn abonnementen"
},
"description": {
"en": "Manage all your subscriptions",
"nl": "IManage all your subscriptions"
},
"name": "subscriptions",
"type": "folder",
"items": [
{
"displayname": {
"en": "Change subscription end date",
"nl": "Wijzig abonnement Eind datum"
},
"description": {
"en": "Change the subscription end date",
"nl": "Abonnement eind datum aanpassen"
},
"path": "/account_management/my_subscriptions/change_end_date_subscription.md",
"permalink": "change-end-date-subscription",
"type": "file"
},
{
"displayname": {
"en": "Change subscription owner",
"nl": "Wijzig abonnement eigenaar"
},
"description": {
"en": "Transfer a subscription to an other customer",
"nl": "Draag een abonnement over aan een andere klant"
},
"path": "/account_management/my_subscriptions/change_subscription_owner.md",
"permalink": "change-subscription-owner",
"type": "file"
}
]
},
{
"displayname": {
"en": "Add a user",
"nl": "Gebruiker toevoegen"
},
"description": {
"en": "How to add a extra or new user to PowerPanel",
"nl": "Hoe je een extra gebruiker kan toevoegen aan PowerPanel"
},
"path": "/account_management/add_newuser.md",
"permalink": "add-new-user",
"type": "file"
}
]
},
{
"displayname": {
"en": "API Documents",
"nl": "API Documentatie"
},
"description": {
"en": "PowerPanel API & webhooks",
"nl": "PowerPanel API & webhooks"
},
"name": "api",
"type": "folder",
"items": [
{
"displayname": {
"en": "API documentation & Examples",
"nl": "API documentatie & Voorbeelden"
},
"description": {
"en": "PowerPanel API",
"nl": "PowerPanel API"
},
"path": "/api/api_documentation.md",
"permalink": "api-documentation",
"type": "file"
},
{
"displayname": {
"en": "Generate API key",
"nl": "Generate API key"
},
"description": {
"en": "Activate API access & generate API key",
"nl": "Activate API access & generate API key"
},
"path": "/api/create_api_key.md",
"permalink": "create-api-key",
"type": "file"
},
{
"displayname": {
"en": "Get the pricelist from the API",
"nl": "Prijslist ophalen via API"
},
"description": {
"en": "Get the pricelist from the API",
"nl": "Prijslist ophalen via API"
},
"path": "/api/get_pricelist_api.md",
"permalink": "get-pricelist-api",
"type": "file"
}
]
},
{
"displayname": {
"en": "Dashboard",
"nl": "Dashboard"
},
"description": {
"en": "Settings and need to know about the Dashboard",
"nl": "Instellingen en weetjes over het Dashboard"
},
"type": "folder",
"name": "dashboard",
"items": [
{
"displayname": {
"en": "Give access to your account",
"nl": "Toegang verlenen aan je account"
},
"description": {
"en": "You need help or you want to help someone, use the Support access",
"nl": "Heb je hulp nodig of wil je iemand anders helpen, gebruik dan de support toegang"
},
"path": "/dashboard/dashboard_support_access.md",
"permalink": "dashboard-support-access",
"type": "file"
},
{
"displayname": {
"en": "Extending your license",
"nl": "Licentie verlengen"
},
"description": {
"en": "View, renew or terminate your license",
"nl": "Bekijk, verleng en je licentie opzeggen"
},
"path": "/dashboard/dashboard_manage_license.md",
"permalink": "dashboard-manage-your-license",
"type": "file"
},
{
"displayname": {
"en": "Make a prepayment",
"nl": "Betaling doen"
},
"description": {
"en": "Make a prepayment and the payment options",
"nl": "Maak een pre-payment betaling"
},
"path": "/dashboard/dashboard_using_prepaid.md",
"permalink": "dashboard-using-prepaid",
"type": "file"
}
]
},
{
"displayname": {
"en": "Domain names",
"nl": "Domeinnamen"
},
"description": {
"en": "Managing domains, whois data, nameserver settings, DNS, DNSsec",
"nl": "Beheer domeinnamen, whois gegevens aanpassen, nameserver settings, dns beheer, dnssec"
},
"type": "folder",
"name": "domain_management",
"items": [
{
"displayname": {
"en": "My domains",
"nl": "Mijn domeinen"
},
"description": {
"en": "Managing domains, whois data, nameserver settings, DNS, DNSsec",
"nl": "Beheer domeinnamen, whois gegevens aanpassen, nameserver settings, dns beheer, dnssec"
},
"type": "file",
"path": "/domain_names/my_domains.md",
"permalink": "my-domains"
},
{
"displayname": {
"en": "Mange domains error status",
"nl": "Verwerk domein met fout"
},
"description": {
"en": "Managing domains is error status or other then active",
"nl": "Beheer domeinnamen met een fout status of anders dan actief"
},
"type": "file",
"path": "/domain_names/manage_error_domains.md",
"permalink": "manage-error-domains"
},
{
"displayname": {
"en": "Domaincontacts",
"nl": "Domeincontacten"
},
"description": {
"en": "Manage your domain contacts",
"nl": "Beheer je domein contacten"
},
"type": "file",
"path": "/domain_names/domaincontacts.md",
"permalink": "domain-contacts"
},
{
"displayname": {
"en": "Import domains",
"nl": "Domeinnamen importeren"
},
"description": {
"en": "Imports your domains",
"nl": "Domeinnamen importeren"
},
"type": "file",
"path": "/domain_names/domain_import.md",
"permalink": "domain-import"
},
{
"displayname": {
"en": "Transferring a domain"
},
"description": {
"en": "How to transfer a domain"
},
"type": "file",
"path": "/domain_names/transferring_a_domain.md",
"permalink": "transferring-a-domain"
}
]
},
{
"displayname": {
"en": "General help",
"nl": "Algemene hulp"
},
"description": {
"en": "A collection of support items about general possibilities",
"nl": "Een aantal support items met een algemeen karakter"
},
"name": "general",
"type": "folder",
"items": [
{
"displayname": {
"en": "Example collecting agency letter",
"nl": "Voorbeeld brief incasso bureau"
},
"description": {
"en": "Example letter for collecting agency. ",
"nl": "Voorbeeld brief voor het incasso bureau."
},
"path": "/general/example_collecting_agency_letter.md",
"permalink": "example-collecting-agency-letter",
"type": "file"
},
{
"displayname": {
"en": "Logon or request your password",
"nl": "Inloggen of je wachtwoord opvragen"
},
"description": {
"en": "You need help on how to logon to PowerPanel or lost your password?",
"nl": "Heb je hulp nodig om aan te melden op PowerPanel of ben je je wachtwoord kwijt?"
},
"path": "/general/general_howto_logon.md",
"permalink": "how-to-logon-or-request-password",
"type": "file"
},
{
"displayname": {
"en": "Openprovider generate API key",
"nl": "Openprovider API key genereren"
},
"description": {
"en": "Connect your Openprovider account to PowerPanel, You need to enable API access.",
"nl": "Verbind je Openprovider account met PowerPanel, je moet wel API toegang inschakelen"
},
"path": "/general/openprovider_generate_api_key.md",
"permalink": "generate-openprovider-api-key",
"type": "file"
},
{
"displayname": {
"en": "PowerPanel Getting started",
"nl": "Snel starten met PowerPanel"
},
"description": {
"en": "Quik starters guide for PowerPanel. ",
"nl": "Snelstart handleiding voor PowerPanel"
},
"path": "/general/powerpanel_getting_started.md",
"permalink": "powerpanel-getting-started",
"type": "file"
},
{
"displayname": {
"en": "PowerPanel invoicing Policy",
"nl": "PowerPanel facturatie beleid"
},
"description": {
"en": "Information about the PowerPanel invoicing Policy. ",
"nl": "Information over het facturatie beleid van PowerPanel."
},
"path": "/general/powerpanel_invoice_policy.md",
"permalink": "powerpanel-invoice-policy",
"type": "file"
},
{
"displayname": {
"en": "SPF record PowerPanel",
"nl": "SPF record PowerPanel"
},
"description": {
"en": "SPF record PowerPanel",
"nl": "SPF record PowerPanel"
},
"path": "/general/powerpanel_spf_record.md",
"permalink": "powerpanel-spf-record",
"type": "file"
},
{
"displayname": {
"en": "PowerPanel translations",
"nl": "PowerPanel vertalingen"
},
"description": {
"en": "PowerPanel translations",
"nl": "PowerPanel vertalingen"
},
"path": "/general/powerpanel_translations.md",
"permalink": "powerpanel-translations",
"type": "file"
}
]
},
{
"displayname": {
"en": "Hosting",
"nl": "Hosting"
},
"description": {
"en": "Add new hosting servers, manage the websites from your customers. Create e-mail boxes, databases, FTP accounts, sub domains, domain aliases, manage your backups and more.",
"nl": "Add new hosting servers, manage the websites from your customers. Create e-mail boxes, databases, FTP accounts, sub domains, domain aliases, manage your backups and more."
},
"type": "folder",
"name": "hosting_management",
"items": [
{
"displayname": {
"en": "Connecting your DirectAdmin server",
"nl": "Connecting your DirectAdmin server"
},
"description": {
"en": "Connecting your DirectAdmin server",
"nl": "Connecting your DirectAdmin server"
},
"path": "/hosting/my_servers/add_directadmin_server.md",
"permalink": "add-directadmin-server",
"type": "file"
},
{
"displayname": {
"en": "Connecting Plesk server to PowerPanel",
"nl": "Connecting Plesk server to PowerPanel"
},
"description": {
"en": "Connecting Plesk server to PowerPanel",
"nl": "Connecting Plesk server to PowerPanel"
},
"path": "/hosting/my_servers/add_plesk_server.md",
"permalink": "add-plesk-server",
"type": "file"
},
{
"displayname": {
"en": "Resolve site conflicts",
"nl": "Resolve site conflicts"
},
"description": {
"en": "Import your current hosting / websites from your server",
"nl": "Import your current hosting / websites from your server"
},
"path": "/hosting/site_conflicts/resolve_site_conflicts.md",
"permalink": "resolve-site-conflicts",
"type": "file"
},
{
"displayname": {
"en": "Monitor and charge overusage",
"nl": "Oververbruik monitoren en doorbelasten"
},
"description": {
"en": "Monitor & carge the overuse of websites from your users",
"nl": "Monitor & carge the overuse of websites from your users"
},
"path": "/system/plugins/overuse.md",
"permalink": "monitor-charge-overusage",
"type": "file"
},
{
"displayname": {
"en": "Manage domain aliasses",
"nl": "Beheer van domein aliasses"
},
"description": {
"en": "Manage, add or remove domain aliasses for your website",
"nl": "Beheer, toevoegen en verwijder van domein aliassen voor je website"
},
"path": "/hosting/my_websites/manage_aliasses.md",
"permalink": "manage-aliasses",
"type": "file"
},
{
"displayname": {
"en": "Manage databases",
"nl": "Beheer databases"
},
"description": {
"en": "Manage, add or remove databases for your website",
"nl": "Beheer, toevoegen en verwijder van database voor je website"
},
"path": "/hosting/my_websites/manage_databases.md",
"permalink": "manage-databases",
"type": "file"
},
{
"displayname": {
"en": "Manage e-mail",
"nl": "Beheer e-mail"
},
"description": {
"en": "Manage, add or remove e-mail on your website",
"nl": "Beheer, toevoegen en verwijder van e-mail voor je website"
},
"path": "/hosting/my_websites/manage_email.md",
"permalink": "manage-email",
"type": "file"
},
{
"displayname": {
"en": "Manage subdomain",
"nl": "Beheer subdomain"
},
"description": {
"en": "Manage, add or remove subdomains on your website",
"nl": "Beheer, toevoegen en verwijder van subdomains voor je website"
},
"path": "/hosting/my_websites/manage_subdomains.md",
"permalink": "manage-subdomains",
"type": "file"
}
]
},
{
"displayname": {
"en": "Invoices",
"nl": "Facturen"
},
"description": {
"en": "Create invoices, sending invoice reminders, approve new invoices, manage payments, settings and more.",
"nl": "Facturen aanmaken, verzenden van herrineringen, goedkeuren van facturen, betalingen verwerken en andere instellingen."
},
"type": "folder",
"name": "invoice_management",
"items": [
{
"displayname": {
"en": "Create credit invoice",
"nl": "Credit factuur aanmaken"
},
"description": {
"en": "Create credit invoice for an customer",
"nl": "Credit factuur aanmaken voor een klant"
},
"path": "/invoices/create_credit_invoice.md",
"permalink": "create-credit-invoice",
"type": "file"
},
{
"displayname": {
"en": "Process a payment",
"nl": "Betaling verwerken"
},
"description": {
"en": "Process a payment for your customer",
"nl": "Een betaling verwerken voor een klant"
},
"path": "/invoices/process_payment.md",
"permalink": "process-payment",
"type": "file"
},
{
"displayname": {
"en": "Credit management",
"nl": "Debiteuren beheer"
},
"description": {
"en": "Credit management",
"nl": "Debiteuren beheer"
},
"path": "/invoices/credit_management.md",
"permalink": "credit-management",
"type": "file"
}
]
},
{
"displayname": {
"en": "Sale",
"nl": "Verkoop"
},
"description": {
"en": "Manage the orders from your customers. Manage webshop settings, branding, hosting plans, resources, coupon codes, discounts, domain extensions, prices and more.",
"nl": "Beheer van bestellingen van jouw klanten. Beheer webshop isntellingen, hosting pakketten, resources, coupon codes, kortingen, domein extensies, prijzen en meer "
},
"name": "sales",
"items": [
{
"displayname": {
"en": "Create hosting add-on",
"nl": "Hosting add-on aanmaken"
},
"description": {
"en": "Create hosting add-on",
"nl": "Hosting add-on aanmaken"
},
"path": "/sales/plans_and_pricing/create_hosting_addon.md",
"permalink": "create-hosting-addon",
"type": "file"
},
{
"displayname": {
"en": "Create hosting plan",
"nl": "Hosting pakket aanmaken"
},
"description": {
"en": "Create hosting plan",
"nl": "Hosting pakket aanmaken"
},
"path": "/sales/plans_and_pricing/create_hosting_plans.md",
"permalink": "create-hosting-plans",
"type": "file"
},
{
"displayname": {
"en": "Manage domain prices",
"nl": "Domeinprijzen beheren"
},
"description": {
"en": "Manage domain prices",
"nl": "Domeinprijzen beheren"
},
"path": "/sales/plans_and_pricing/manage_domainprices.md",
"permalink": "manage-domainprices",
"type": "file"
},
{
"displayname": {
"en": "Data export tool",
"nl": "Gegevens exporteren"
},
"description": {
"en": "Data export tool",
"nl": "Gegevens exporteren"
},
"path": "/sales/reports/export_tool.md",
"permalink": "data-export-tool",
"type": "file"
},
{
"displayname": {
"en": "Data reporting",
"nl": "Gegevens raportages"
},
"description": {
"en": "Data reporting",
"nl": "Gegevens raportages"
},
"path": "/sales/reports/reporting_tools.md",
"permalink": "reporting-tools",
"type": "file"
},
{
"displayname": {
"en": "Sales discount groups",
"nl": "Verkoop kortingsgroepen"
},
"description": {
"en": "Sales discount groups",
"nl": "Verkoop kortingsgroepen"
},
"path": "/sales/sales_discount/discount.md",
"permalink": "sales-discount-groups",
"type": "file"
}
],
"type": "folder"
},
{
"displayname": {
"en": "SSL Certificates",
"nl": "SSL Certificaten"
},
"description": {
"en": "Mange SSL certificates",
"nl": "Beheer SSL ceritificaten"
},
"type": "folder",
"name": "ssl_management",
"items": [
{
"displayname": {
"en": "SSL management",
"nl": "SSL management"
},
"description": {
"en": "SSL management",
"nl": "SSL management"
},
"path": "/ssl_certificates/ssl_management.md",
"permalink": "ssl-management",
"type": "file"
}
]
},
{
"displayname": {
"en": "Branding",
"nl": "Branding"
},
"description": {
"en": "PowerPanel Branding",
"nl": "PowerPanel Branding"
},
"name": "branding",
"type": "folder",
"items": [
{
"displayname": {
"en": "White label branding (CP)",
"nl": "White label branding (CP)"
},
"description": {
"en": "White label branding",
"nl": "White label branding"
},
"path": "/system/branding/white_label_branding.md",
"permalink": "white-label-branding",
"type": "file"
},
{
"displayname": {
"en": "White label branding (Shop)",
"nl": "White label branding (Shop)"
},
"description": {
"en": "Branding your webshop",
"nl": "Branding en configureren van je webshop"
},
"path": "/system/branding/configuring_webshop.md",
"permalink": "configuring-webshop",
"type": "file"
},
{
"displayname": {
"en": "CSS example",
"nl": "CSS voorbeeld"
},
"description": {
"en": "CSS example for the control panel",
"nl": "CSS voorbeeld voor het controle paneel"
},
"path": "/system/branding/css_example.md",
"permalink": "css-example",
"type": "file"
},
{
"displayname": {
"en": "Multicurrency",
"nl": "Multi valuta"
},
"description": {
"en": "Setup currency for the control panel",
"nl": "Valuta instellen voor het controle paneel"
},
"path": "/system/branding/multicurrency.md",
"permalink": "multicurrency",
"type": "file"
},
{
"displayname": {
"en": "Sending messages from PowerPanel",
"nl": "Versturen van berichten"
},
"description": {
"en": "Sending messages from PowerPanel",
"nl": "Versturen van e-mail berichten vanuit PowerPanel"
},
"path": "/system/branding/sending_messages_from_powerpanel.md",
"permalink": "sending-messages-from-powerpanel",
"type": "file"
}
]
},
{
"displayname": {
"en": "Plugin settings",
"nl": "Plugin instellingen"
},
"description": {
"en": "PowerPanel plugin settings and other plugin options",
"nl": "PowerPanel plugin instellingen en andere plugin mogelijkheden"
},
"name": "plugin-settings",
"type": "folder",
"items": [
{
"displayname": {
"en": "Adyen payment plugin settings",
"nl": "Adyen plugin betaal instellingen"
},
"description": {
"en": "Adyen payment plugin settings",
"nl": "Adyen payment plugin settings"
},
"path": "/system/plugins/adyen.md",
"permalink": "adyen-plugin",
"type": "file"
},
{
"displayname": {
"en": "Setup Exact online plugin",
"nl": "Instelleren Exact online plugin"
},
"description": {
"en": "Setup Exact online plugin",
"nl": "Instaleren Exact online plugin"
},
"path": "/system/plugins/exact_online.md",
"permalink": "exact-online",
"type": "file"
},
{
"displayname": {
"en": "Openprovider DNS plugin",
"nl": "Openprovider DNS plugin"
},
"description": {
"en": "Openprovider DNS plugin",
"nl": "Openprovider DNS plugin"
},
"path": "/system/plugins/openprovider_dns_plugin.md",
"permalink": "openprovider-dns-plugin",
"type": "file"
},
{
"displayname": {
"en": "Openprovider SSL plugin",
"nl": "Openprovider SSL plugin"
},
"description": {
"en": "Openprovider SSL plugin",
"nl": "Openprovider SSL plugin"
},
"path": "/system/plugins/openprovider_ssl_plugin.md",
"permalink": "openprovider-ssl-plugin",
"type": "file"
},
{
"displayname": {
"en": "Monitor and charge overusage",
"nl": "Oververbruik monitoren en doorbelasten"
},
"description": {
"en": "Monitor & carge the overuse of websites from your users",
"nl": "Monitor & carge the overuse of websites from your users"
},
"path": "/system/plugins/overuse.md",
"permalink": "monitor-charge-overusage",
"type": "file"
},
{
"displayname": {
"en": "PowerPanel DNS plugin",
"nl": "PowerPanel DNS plugin"
},
"description": {
"en": "PowerPanel DNS plugin",
"nl": "PowerPanel DNS plugin"
},
"path": "/system/plugins/powerpanel_dns_plugin.md",
"permalink": "powerpanel-dns-plugin",
"type": "file"
},
{
"displayname": {
"en": "PowerPanel Domain forwarding",