customer-dashboard.php
20 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Customer dashboard pattern |
| 4 | */ |
| 5 | return [ |
| 6 | 'title' => __( 'Customer Dashboard', 'surecart' ), |
| 7 | 'categories' => [], |
| 8 | 'blockTypes' => [], |
| 9 | 'content' => '<!-- wp:surecart/dashboard-area --> |
| 10 | <!-- wp:surecart/customer-subscriptions /--> |
| 11 | |
| 12 | <!-- wp:surecart/customer-orders /--> |
| 13 | |
| 14 | <!-- wp:surecart/customer-invoices /--> |
| 15 | |
| 16 | <!-- wp:surecart/customer-downloads /--> |
| 17 | |
| 18 | <!-- /wp:surecart/dashboard-area -->', |
| 19 | ]; |
| 20 |