PluginProbe
Float menu – awesome floating side menu / 5.1
Float menu – awesome floating side menu v5.1
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 / options / clone.php

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

111 lines 2.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Clone Elements Settings
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 // Elements for clone Menu 1
16 $menu_1_item_icon = array(
17 'name' => 'param[menu_1][item_icon][]',
18 'class' => 'icons',
19 'type' => 'select',
20 'val' => 'fas fa-hand-point-up',
21 'option' => $icons_new,
22 );
23
24
25
26 $menu_1_item_tooltip = array(
27 'name' => 'param[menu_1][item_tooltip][]',
28 'class' => 'item-tooltip',
29 'type' => 'text',
30 'val' => '',
31 );
32
33
34
35 $menu_1_item_type = array(
36 'name' => 'param[menu_1][item_type][]',
37 'type' => 'select',
38 'val' => 'link',
39 'class' => 'item-type',
40 'option' => array(
41 'link' => esc_attr__( 'Link', $this->plugin['text'] ),
42 ),
43 );
44
45 $menu_1_item_link = array(
46 'name' => 'param[menu_1][item_link][]',
47 'type' => 'text',
48 'val' => '',
49 );
50
51 $menu_1_new_tab = array(
52 'name' => 'param[menu_1][new_tab][]',
53 'class' => '',
54 'type' => 'checkbox',
55 'val' => '',
56 );
57
58 // Font color
59 $menu_1_color = array(
60 'name' => 'param[menu_1][color][]',
61 'type' => 'color',
62 'val' => '#ffffff',
63 );
64
65 $menu_1_hcolor = array(
66 'name' => 'param[menu_1][hcolor][]',
67 'type' => 'color',
68 'val' => '#ffffff',
69 );
70
71 // Background
72 $menu_1_bcolor = array(
73 'name' => 'param[menu_1][bcolor][]',
74 'type' => 'color',
75 'val' => '#128be0',
76 );
77
78 $menu_1_hbcolor = array(
79 'name' => 'param[menu_1][hbcolor][]',
80 'type' => 'color',
81 'val' => '#128be0',
82 );
83
84 $menu_1_button_id = array(
85 'name' => 'param[menu_1][button_id][]',
86 'type' => 'text',
87 'val' => '',
88 );
89
90 $menu_1_button_id_help = array(
91 'text' => esc_attr__( 'Set ID for element.', $this->plugin['text'] ),
92 );
93
94 $menu_1_button_class = array(
95 'name' => 'param[menu_1][button_class][]',
96 'type' => 'text',
97 'val' => '',
98 );
99
100 $menu_1_button_class_help = array(
101 'title' => esc_attr__( 'Set Class for element.', $this->plugin['text'] ),
102 'ul' => array(
103 esc_attr__( 'You may enter several classes separated by a space.', $this->plugin['text'] ),
104 )
105 );
106
107 $menu_1_link_rel = array(
108 'name' => 'param[menu_1][link_rel][]',
109 'type' => 'text',
110 'val' => '',
111 );