default.php
21 lines
| 1 | <script> |
| 2 | var shopengine_has_product_status = <?php echo json_encode([ |
| 3 | 'has_product' => \ShopEngine\Core\Builders\Templates::has_simple_product(), |
| 4 | 'message' => \ShopEngine\Widgets\Products::instance()->no_product_to_preview() |
| 5 | ]);?> |
| 6 | </script> |
| 7 | <?php |
| 8 | $dashboard_class = 'shopengine-admin-dashboard'; |
| 9 | if( is_rtl() ) { |
| 10 | $dashboard_class .= ' rtl-enabled'; |
| 11 | } else { |
| 12 | $dashboard_class .= ' rtl-disabled'; |
| 13 | } |
| 14 | ?> |
| 15 | |
| 16 | <div class="<?php echo esc_attr( $dashboard_class ) ?>"> |
| 17 | <div class="shopengine-admin-dashboard-wrapper" > |
| 18 | <!-- Content Goes Here --> |
| 19 | </div> |
| 20 | </div> |
| 21 |