PluginProbe
Bubble Menu – Floating Button Menu with Sticky Navigation / 4.0
Bubble Menu – Floating Button Menu with Sticky Navigation v4.0
trunk 1.3 2.0 2.2 2.2.1 3.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1 3.1.1 4.0 4.0.1 4.0.2 4.0.3 4.0.4 4.0.5 4.0.6 4.0.7 4.1 4.1.1
bubble-menu / admin / settings / options / template.php

template.php in Bubble Menu – Floating Button Menu with Sticky Navigation 4.0, at admin/settings/options/template.php

71 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 defined( 'ABSPATH' ) || exit;
4
5 $template = [
6 'text' => [
7 'type' => 'text',
8 'title' => __( 'Title', 'bubble-menu' ),
9 'val' => '',
10 'atts' => [
11 'placeholder' => __( 'Placeholder', 'bubble-menu' ),
12 ],
13 ],
14
15 'number' => [
16 'type' => 'number',
17 'title' => __( 'Title', 'bubble-menu' ),
18 'val' => '',
19 'atts' => [
20 'min' => 0,
21 'max' => 100,
22 'step' => 1,
23 ],
24 ],
25
26 'select' => [
27 'type' => 'select',
28 'title' => __('Title', 'bubble-menu'),
29 'val' => '1',
30 'atts' => [
31 '1' => __( '1', 'bubble-menu' ),
32 '2' => __( '2', 'bubble-menu' ),
33 '3' => __( '3', 'bubble-menu' ),
34 ],
35 ],
36
37 'color' => [
38 'type' => 'text',
39 'val' => '#ffffff',
40 'title' => __( 'Color', 'bubble-menu' ),
41 'atts' => [
42 'class' => 'wpie-color',
43 'data-alpha-enabled' => 'true',
44 ],
45 ],
46
47 'checkbox' => [
48 'type' => 'checkbox',
49 'title' => __( 'Title', 'bubble-menu' ),
50 'label' => __( 'Enable', 'bubble-menu' ),
51 ],
52
53 'title' => [
54 'label' => __( 'Title', 'bubble-menu' ),
55 'name' => '',
56 'toggle' => true,
57 'val' => 1
58 ],
59
60 'addon' => [
61 'type' => 'select',
62 'name' => '',
63 'val' => '',
64 'atts' => [
65 '1' => __( '1', 'bubble-menu' ),
66 '2' => __( '2', 'bubble-menu' ),
67 '3' => __( '3', 'bubble-menu' ),
68 ],
69 ],
70
71 ];