PluginProbe
Image Hotspot – Map Image Annotation / 1.4
Image Hotspot – Map Image Annotation v1.4
3.8 3.7 3.6 trunk 1.0 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.7 2.8 2.9 3.0 All 30 releases
image-map-hotspots / settings / form.php

form.php in Image Hotspot – Map Image Annotation 1.4, at settings/form.php

44 lines 2.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <div class="imh_6310_tabs_panel_settings">
2 <form method="post">
3 <?php wp_nonce_field("imh_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="imh_6310_json_field" value="<?php echo isset($cssData['json_data']) ? esc_attr($cssData['json_data']) : '' ?>" />
7 <div class="imh-6310-tab-content">
8 <div id="tab-1">
9 <div class="row imh_6310_padding_15_px">
10 <h3 class="imh-6310-tab-menu-settings">Image hotspot Settings</h3>
11 <div class="imh-6310-col-50">
12 <table class="table table-responsive imh_6310_admin_table">
13 <tr height="45">
14 <td>
15 <b>Hotspot Name</b>
16 </td>
17 <td>
18 <input type="text" class="imh-6310-form-input" required autocomplete="off" name="name" placeholder="Enter Hotspot name" value="<?php echo isset($styledata['name']) ? imh_6310_replace(esc_attr($styledata['name'])) : 'Hotspot 1' ?>">
19 </td>
20 </tr>
21 </table>
22 </div>
23 <div class="imh-6310-col-50">
24 <table class="table table-responsive imh_6310_admin_table">
25 <tr height="45">
26 <td>
27 <b>Custom CSS</b>
28 </td>
29 <td>
30 <textarea class="imh-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="imh-6310-btn-primary imh-6310-pull-right imh-6310-insert-ja-data" style="margin-right: 15px; margin-bottom: 10px; display: block" />
39 <br class="imh-6310-clear" />
40 </div>
41 </form>
42 </div>
43
44