woocommerce-form.php
3 years ago
woocommerce-option-row.php
3 years ago
woocommerce-panel.php
3 years ago
woocommerce-upload.php
2 years ago
woocommerce-panel.php
27 lines
| 1 | <?php |
| 2 | /** |
| 3 | * The Template for displaying the WooCommerce Panel. |
| 4 | * |
| 5 | * @var YIT_Plugin_Panel_WooCommerce $this The YITH WooCommerce Panel. |
| 6 | * @var string $page The current page. |
| 7 | * @var string $wrap_class The wrapper class. |
| 8 | * @var array $available_tabs The available tabs. |
| 9 | * @package YITH\PluginFramework\Templates |
| 10 | */ |
| 11 | |
| 12 | defined( 'ABSPATH' ) || exit; // Exit if accessed directly. |
| 13 | |
| 14 | add_thickbox(); |
| 15 | ?> |
| 16 | <div class="yith-plugin-fw__wrap wrap <?php echo esc_attr( $wrap_class ); ?>"> |
| 17 | <div id="icon-users" class="icon32"><br/></div> |
| 18 | <?php |
| 19 | |
| 20 | do_action( 'yith_plugin_fw_before_woocommerce_panel', $page ); |
| 21 | |
| 22 | if ( ! empty( $available_tabs ) ) { |
| 23 | $this->print_panel_content(); |
| 24 | } |
| 25 | ?> |
| 26 | </div> |
| 27 |