css
2 years ago
add-point-html.php
2 years ago
builder.php
2 years ago
edit-point-html.php
2 years ago
form.php
2 years ago
how-to-use.php
2 years ago
import-export-plugins.php
2 years ago
nested-point.php
2 years ago
plugin-settings.php
2 years ago
save.php
2 years ago
template-settings.php
2 years ago
wpmart-plugins.php
2 years ago
form.php
44 lines
| 1 | <div class="isimb_6310_tabs_panel_settings"> |
| 2 | <form method="post"> |
| 3 | <?php wp_nonce_field("isimb_6310_nonce_field_form") ?> |
| 4 | <input type="hidden" name="id" value="<?php echo esc_attr($ids) ?>" /> |
| 5 | <input type="hidden" name="main_image" value="<?php echo isset($cssData['main_image']) ? esc_attr($cssData['main_image']) : '' ?>" /> |
| 6 | <input type="hidden" name="json_data" id="isimb_6310_json_field" value="<?php echo isset($cssData['json_data']) ? esc_attr($cssData['json_data']) : '' ?>" /> |
| 7 | <div class="isimb-6310-tab-content"> |
| 8 | <div id="tab-1"> |
| 9 | <div class="row isimb_6310_padding_15_px"> |
| 10 | <h3 class="isimb-6310-tab-menu-settings">Image Map Builder Settings</h3> |
| 11 | <div class="isimb-6310-col-50"> |
| 12 | <table class="table table-responsive isimb_6310_admin_table"> |
| 13 | <tr height="45"> |
| 14 | <td> |
| 15 | <b>Shortcode Name</b> |
| 16 | </td> |
| 17 | <td> |
| 18 | <input type="text" class="isimb-6310-form-input" required autocomplete="off" name="name" placeholder="Enter builder name" value="<?php echo isset($styledata['name']) ? isimb_6310_replace(esc_attr($styledata['name'])) : 'Image Map Builder' ?>"> |
| 19 | </td> |
| 20 | </tr> |
| 21 | </table> |
| 22 | </div> |
| 23 | <div class="isimb-6310-col-50"> |
| 24 | <table class="table table-responsive isimb_6310_admin_table"> |
| 25 | <tr height="45"> |
| 26 | <td> |
| 27 | <b>Custom CSS</b> |
| 28 | </td> |
| 29 | <td> |
| 30 | <textarea class="isimb-6310-form-input" name="custom_css" rows="4"><?php echo isset($cssData['custom_css']) ? esc_attr($cssData['custom_css']) : '' ?></textarea> |
| 31 | </td> |
| 32 | </tr> |
| 33 | </table> |
| 34 | </div> |
| 35 | </div> |
| 36 | </div> |
| 37 | <hr /> |
| 38 | <input type="submit" name="update_style_change" value="Save" class="isimb-6310-btn-primary isimb-6310-pull-right isimb-6310-insert-ja-data" style="margin-right: 15px; margin-bottom: 10px; display: block" /> |
| 39 | <br class="isimb-6310-clear" /> |
| 40 | </div> |
| 41 | </form> |
| 42 | </div> |
| 43 | |
| 44 |