PluginProbe
Bubble Menu – Floating Button Menu with Sticky Navigation / 3.0.4
Bubble Menu – Floating Button Menu with Sticky Navigation v3.0.4
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 / display.php

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

83 lines 2.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php if ( ! defined( 'ABSPATH' ) ) {
2 exit;
3 }
4 /**
5 * Tergeting settings
6 *
7 * @package Lead_Generation
8 * @subpackage Settings
9 * @copyright Copyright (c) 2018, Dmytro Lobov
10 * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
11 * @since 1.0
12 */
13
14 // Enable Don’t show on screens more than
15 $include_more_screen = array(
16 'id' => 'include_more_screen',
17 'name' => 'param[include_more_screen]',
18 'type' => 'checkbox',
19 'val' => isset( $param['include_more_screen'] ) ? $param['include_more_screen'] : 0,
20 'func' => 'screen_more(this);',
21 );
22
23 // Show on screens helper
24 $show_screen_help = array(
25 'text' => __( 'Specify the window breakpoint in px when the button will be shown.', 'bubble-menu' ),
26 );
27
28 // Max screen value
29 $screen_more = array(
30 'id' => 'screenmore',
31 'name' => 'param[screen_more]',
32 'type' => 'number',
33 'val' => isset( $param['screen_more'] ) ? $param['screen_more'] : 1024,
34 'option' => array(
35 'min' => '0',
36 'max' => '3000',
37 'step' => '1',
38 'placeholder' => '1024',
39 ),
40 );
41
42 // Enable Don’t show on screens less than
43 $include_mobile = array(
44 'id' => 'include_mobile',
45 'name' => 'param[include_mobile]',
46 'type' => 'checkbox',
47 'val' => isset( $param['include_mobile'] ) ? $param['include_mobile'] : 0,
48 'func' => 'screen_less(this);',
49 );
50
51 // Enable Don’t show on screens less than helper
52 $include_mobile_help = array(
53 'text' => __( 'Specify the window breakpoint ( mix width) in px.', 'bubble-menu' ),
54 );
55
56 // Min screen value
57 $screen = array(
58 'id' => 'screen',
59 'name' => 'param[screen]',
60 'type' => 'number',
61 'val' => isset( $param['screen'] ) ? $param['screen'] : 480,
62 'option' => array(
63 'min' => '0',
64 'max' => '3000',
65 'step' => '1',
66 'placeholder' => '480',
67 ),
68 );
69
70 // Disable FontAwesome on front-end of the site
71 $disable_fontawesome = array(
72 'id' => 'disable_fontawesome',
73 'name' => 'param[disable_fontawesome]',
74 'type' => 'checkbox',
75 'val' => isset( $param['disable_fontawesome'] ) ? $param['disable_fontawesome'] : 0,
76 );
77
78 $disable_fontawesome_help = array (
79 'title' => __('Disable Font Awesome 5 style on front-end of the site.', 'bubble-menu'),
80 'ul' => array (
81 __('If you already have a Font Awesome 5 installed on the site, you can disable the include the Font Awesome 5 style.', 'bubble-menu'),
82 ),
83 );