PluginProbe
Float menu – awesome floating side menu / 4.3
Float menu – awesome floating side menu v4.3
7.2.5 trunk 2.1 2.2 3.0.1 3.1 3.2.2 3.3.1 3.5 3.5.1 3.5.2 3.5.3. 3.5.4 4.0 4.1 4.1.1 4.2 4.3 4.3.1 4.3.2 5.0 5.0.1 5.0.2 5.0.3 5.1 All 57 releases
float-menu / admin / settings / clone.php

clone.php in Float menu – awesome floating side menu 4.3, at admin/settings/clone.php

130 lines 4.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Elements for clone
4 *
5 * @package Wow_Plugin
6 * @copyright Copyright (c) 2018, Dmytro Lobov
7 * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8 * @since 1.0
9 */
10
11 if ( ! defined( 'ABSPATH' ) ) {
12 exit;
13 }
14
15 include_once( 'options/clone.php' );
16 ?>
17
18 <div class="panel">
19 <div class="panel-heading">
20 <div class="level-item icon-select" style="color: #ffffff; background-color: #128be0;">
21 <i class="fas fa-hand-point-up"></i>
22 </div>
23 <div class="level-item">
24 <span class="item-label-text">(<?php esc_attr_e( 'no label', $this->plugin['text'] ); ?>)</span>
25 </div>
26 <div class="level-item element-type">
27 Link
28 </div>
29 <div class="level-item toogle-element">
30 <span class="dashicons dashicons-arrow-down is-hidden"></span>
31 <span class="dashicons dashicons-arrow-up"></span>
32 </div>
33 </div>
34 <div class="toogle-content">
35 <div class="panel-block">
36 <div class="field">
37 <label class="label is-small">
38 <?php esc_attr_e( 'Label Text', $this->plugin['text'] ); ?>
39 </label>
40 <?php self::option( $menu_1_item_tooltip ); ?>
41 </div>
42 </div>
43
44 <p class="panel-tabs">
45 <a class="is-active" data-tab="1"><?php esc_attr_e("Type",$this->plugin['text'] ); ?></a>
46 <a data-tab="2"><?php esc_attr_e("Icon",$this->plugin['text'] ); ?></a>
47 <a data-tab="3"><?php esc_attr_e("Style",$this->plugin['text'] ); ?></a>
48 <a data-tab="4"><?php esc_attr_e("Attributes",$this->plugin['text'] ); ?></a>
49 </p>
50 <div data-tab-content="1" class="tabs-content">
51 <div class="panel-block">
52 <div class="field">
53 <label class="label">
54 <?php esc_attr_e( 'Item type', $this->plugin['text'] ); ?>
55
56 </label>
57 <?php self::option( $menu_1_item_type ); ?>
58 </div>
59 <div class="field item-link">
60 <label class="label item-link-text">
61 <?php esc_attr_e( 'Link', $this->plugin['text'] ); ?>
62 </label>
63 <?php self::option( $menu_1_item_link ); ?>
64 </div>
65 </div>
66 <label class="panel-block item-link-blank">
67 <?php self::option( $menu_1_new_tab ); ?><?php esc_attr_e( 'Open link in a new tab', $this->plugin['text'] ); ?>
68 </label>
69 </div>
70 <div data-tab-content="2" class="tabs-content is-hidden">
71 <div class="panel-block icon-default">
72 <div class="field">
73 <label class="label">
74 <?php esc_attr_e( 'Icon', $this->plugin['text'] ); ?>
75 </label>
76 <?php self::option( $menu_1_item_icon ); ?>
77 </div>
78 </div>
79 </div>
80 <div data-tab-content="3" class="tabs-content is-hidden">
81 <div class="panel-block">
82 <div class="field">
83 <label class="label">
84 <?php esc_attr_e( 'Font Color', $this->plugin['text'] ); ?>
85 </label>
86 <?php self::option( $menu_1_color ); ?>
87 </div>
88 </div>
89 <div class="panel-block">
90 <div class="field">
91 <label class="label">
92 <?php esc_attr_e( 'Background', $this->plugin['text'] ); ?>
93 </label>
94 <?php self::option( $menu_1_bcolor ); ?>
95 </div>
96 </div>
97 </div>
98 <div data-tab-content="4" class="tabs-content is-hidden">
99 <div class="panel-block">
100 <div class="field">
101 <label class="label">
102 <?php esc_attr_e( 'ID for element', $this->plugin['text'] ); ?><?php self::tooltip( $menu_1_button_id_help ); ?>
103 </label>
104 <?php self::option( $menu_1_button_id ); ?>
105 </div>
106 </div>
107 <div class="panel-block">
108 <div class="field">
109 <label class="label">
110 <?php esc_attr_e( 'Class for element', $this->plugin['text'] ); ?><?php self::tooltip( $menu_1_button_class_help ); ?>
111 </label>
112 <?php self::option( $menu_1_button_class ); ?>
113 </div>
114 </div>
115 <div class="panel-block">
116 <div class="field">
117 <label class="label">
118 <?php esc_attr_e( 'Attribute: rel', $this->plugin['text'] ); ?>
119 </label>
120 <?php self::option( $menu_1_link_rel ); ?>
121 </div>
122 </div>
123 </div>
124 <div class="panel-block actions">
125 <a class="item-delete"><?php esc_attr_e('Remove', $this->plugin['text'] ); ?></a>
126 </div>
127 </div>
128 </div>
129
130