| 1 |
<?php |
| 2 |
/* |
| 3 |
* Campaign settings metabox. |
| 4 |
*/ |
| 5 |
?> |
| 6 |
|
| 7 |
<ul class="hurrytimer-tabbar"> |
| 8 |
<li class="active"> |
| 9 |
<a href="#hurrytimer-tabcontent-general"><?php _e('Schedule', 'hurrytimer') ?></a> |
| 10 |
</li> |
| 11 |
<li> |
| 12 |
<a href="#hurrytimer-tabcontent-woocommerce"><?php _e('WooCommerce', 'hurrytimer') ?></a> |
| 13 |
</li> |
| 14 |
<li> |
| 15 |
<a href="#hurrytimer-actions"><?php _e('Actions', 'hurrytimer') ?></a></li> |
| 16 |
<li><a href="#hurrytimer-tabcontent-styling"><?php _e('Appearance', 'hurrytimer') ?></a></li> |
| 17 |
</ul> |
| 18 |
|
| 19 |
<div class="hurrytimer-tabs"> |
| 20 |
<?php include "schedule-tab.php"; ?> |
| 21 |
<?php include "woocommerce-tab.php"; ?> |
| 22 |
<?php include "actions-tab.php"; ?> |
| 23 |
<?php include "appearance-tab.php"; ?> |
| 24 |
</div> |
| 25 |
|