customer-dashboard.php
53 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Donation form block pattern |
| 4 | */ |
| 5 | return [ |
| 6 | 'title' => __( 'Order Confirmation', 'surecart' ), |
| 7 | 'categories' => [], |
| 8 | 'blockTypes' => [], |
| 9 | 'content' => '<!-- wp:surecart/customer-dashboard --> |
| 10 | <sc-tab-group style="font-size:16px;font-family:var(--sc-font-sans)" class="wp-block-surecart-customer-dashboard alignwide"><!-- wp:surecart/dashboard-tabs --> |
| 11 | <!-- wp:surecart/dashboard-tab {"id":"6494481d-dd18-4323-8a68-2eec728a531c","title":"Dashboard","panel":"dashboard","icon":"shopping-bag"} --> |
| 12 | <sc-tab slot="nav"><sc-icon style="font-size:18px" slot="prefix" name="shopping-bag"></sc-icon>Dashboard</sc-tab> |
| 13 | <!-- /wp:surecart/dashboard-tab --> |
| 14 | |
| 15 | <!-- wp:surecart/dashboard-tab {"id":"1543ae69-a38d-4e74-b1fd-bad2b8ae9e49","title":"Account","panel":"account","icon":"user"} --> |
| 16 | <sc-tab slot="nav"><sc-icon style="font-size:18px" slot="prefix" name="user"></sc-icon>Account</sc-tab> |
| 17 | <!-- /wp:surecart/dashboard-tab --> |
| 18 | |
| 19 | <!-- wp:surecart/dashboard-tab {"id":"8d7824d1-bd96-4d25-99ae-e68bfc8d63c1","title":"Logout","panel":"logout","icon":"log-out"} --> |
| 20 | <sc-tab slot="nav"><sc-icon style="font-size:18px" slot="prefix" name="log-out"></sc-icon>Logout</sc-tab> |
| 21 | <!-- /wp:surecart/dashboard-tab --> |
| 22 | <!-- /wp:surecart/dashboard-tabs --> |
| 23 | |
| 24 | <!-- wp:surecart/dashboard-pages --> |
| 25 | <!-- wp:surecart/dashboard-page {"id":"8d7824d1-bd96-4d25-99ae-e68bfc8d63c1","name":"logout","title":"New Tab 6"} --> |
| 26 | <!-- wp:surecart/heading {"title":"Are you sure you want to logout?"} --> |
| 27 | <sc-heading>Are you sure you want to logout?<span slot="description"></span><span slot="end"></span></sc-heading> |
| 28 | <!-- /wp:surecart/heading --> |
| 29 | |
| 30 | <!-- wp:surecart/logout-button /--> |
| 31 | <!-- /wp:surecart/dashboard-page --> |
| 32 | |
| 33 | <!-- wp:surecart/dashboard-page {"id":"1543ae69-a38d-4e74-b1fd-bad2b8ae9e49","name":"account","title":"New Tab 5"} --> |
| 34 | <!-- wp:surecart/wordpress-account /--> |
| 35 | |
| 36 | <!-- wp:surecart/customer-billing-details /--> |
| 37 | <!-- /wp:surecart/dashboard-page --> |
| 38 | |
| 39 | <!-- wp:surecart/dashboard-page {"id":"6494481d-dd18-4323-8a68-2eec728a531c","name":"dashboard","title":"New Tab 2"} --> |
| 40 | <!-- wp:surecart/customer-subscriptions /--> |
| 41 | |
| 42 | <!-- wp:surecart/customer-downloads /--> |
| 43 | |
| 44 | <!-- wp:surecart/customer-payment-methods {"title":"Payment Methods"} /--> |
| 45 | |
| 46 | <!-- wp:surecart/customer-orders /--> |
| 47 | |
| 48 | <!-- /wp:surecart/dashboard-page --> |
| 49 | <!-- /wp:surecart/dashboard-pages --></sc-tab-group> |
| 50 | <!-- /wp:surecart/customer-dashboard --> |
| 51 | ', |
| 52 | ]; |
| 53 |