PluginProbe
Image Hotspot – Map Image Annotation / 2.5
Image Hotspot – Map Image Annotation v2.5
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 / template-menu.php

template-menu.php in Image Hotspot – Map Image Annotation 2.5, at template-menu.php

55 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 function imh_6310_home()
3 {
4 global $wpdb;
5 $style_table = $wpdb->prefix . 'imh_6310_style';
6 include imh_6310_plugin_url . 'header.php';
7 wp_enqueue_media();
8
9 if (empty($_GET['action'])) {
10 include imh_6310_plugin_url . 'home.php';
11 } else if (!empty($_GET['action'])) {
12 $ids = isset($_GET['styleid']) ? (int) ($_GET['styleid']) : 0;
13 include imh_6310_plugin_url . "settings/annotation.php";
14 include imh_6310_plugin_url . "settings/add-point-html.php";
15 include imh_6310_plugin_url . "settings/edit-point-html.php";
16 }
17 }
18
19 function imh_6310_image_map_hotspot_lincense()
20 {
21 global $wpdb;
22 include imh_6310_plugin_url . 'header.php';
23 include imh_6310_plugin_url . 'license.php';
24 }
25
26 function imh_6310_image_map_hotspot_setting()
27 {
28 global $wpdb;
29 wp_enqueue_style('imh-6310-style', plugins_url('assets/css/style.css', __FILE__));
30 wp_enqueue_style('imh-color-style', plugins_url('assets/css/jquery.minicolors.css', __FILE__));
31 include imh_6310_plugin_url . 'header.php';
32 include imh_6310_plugin_url . 'settings/plugin-settings.php';
33 }
34
35 function imh_6310_image_map_hotspot_how_to_use()
36 {
37 global $wpdb;
38 include imh_6310_plugin_url . 'header.php';
39 include imh_6310_plugin_url . 'settings/how-to-use.php';
40 }
41
42 function imh_6310_wpmart_plugins()
43 {
44 global $wpdb;
45 include imh_6310_plugin_url . 'header.php';
46 include imh_6310_plugin_url . 'settings/wpmart-plugins.php';
47 }
48
49 function imh_6310_image_map_hotspot_import_export()
50 {
51 global $wpdb;
52 include imh_6310_plugin_url . 'header.php';
53 include imh_6310_plugin_url . 'settings/import-export-plugins.php';
54 }
55