PluginProbe
Button Generator – Easily Create Custom Buttons with Icons and Analytics / trunk
Button Generator – Easily Create Custom Buttons with Icons and Analytics vtrunk
trunk 1.1.1 2.0 2.1 2.2 2.3.2 2.3.3 2.3.4 2.3.5 2.3.6 2.3.7 2.3.8 2.3.9 3.0 3.0.1 3.0.2 3.0.3 3.1 3.1.1 3.1.2 3.1.3 3.2 3.2.1 3.2.2 3.2.3 All 28 releases
button-generation / admin / settings / 2.style.php

2.style.php in Button Generator – Easily Create Custom Buttons with Icons and Analytics trunk, at admin/settings/2.style.php

80 lines 2.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 * Page Name: Style
4 */
5
6 use ButtonGenerator\Admin\CreateFields;
7
8 defined( 'ABSPATH' ) || exit;
9
10 $page_opt = include( 'options/style.php' );
11 $field = new CreateFields( $options, $page_opt );
12 ?>
13
14 <div class="wpie-fieldset">
15 <div class="wpie-fields">
16 <?php $field->create( 'zindex' ); ?>
17 <?php $field->create( 'rotate_button' ); ?>
18 <?php $field->create( 'rotate_btn_custom' ); ?>
19 </div>
20 </div>
21
22 <div class="wpie-fieldset">
23 <div class="wpie-legend"><?php esc_html_e( 'Sizes', 'button-generation' ); ?></div>
24 <div class="wpie-fields">
25 <?php $field->create( 'width' ); ?>
26 <?php $field->create( 'height' ); ?>
27 </div>
28 </div>
29
30 <div class="wpie-fieldset">
31 <div class="wpie-legend"><?php esc_html_e( 'Colors', 'button-generation' ); ?></div>
32 <div class="wpie-fields">
33 <?php $field->create( 'icon_color' ); ?>
34 <?php $field->create( 'icon_hover_color' ); ?>
35 </div>
36 <div class="wpie-fields">
37 <?php $field->create( 'color' ); ?>
38 <?php $field->create( 'background' ); ?>
39 <?php $field->create( 'hover_color' ); ?>
40 <?php $field->create( 'hover_background' ); ?>
41 </div>
42 </div>
43
44 <div class="wpie-fieldset">
45 <div class="wpie-legend"><?php esc_html_e( 'Border', 'button-generation' ); ?></div>
46 <div class="wpie-fields">
47 <?php $field->create( 'border_radius' ); ?>
48 <?php $field->create( 'border_style' ); ?>
49 <?php $field->create( 'border_color' ); ?>
50 <?php $field->create( 'border_width' ); ?>
51
52 </div>
53 </div>
54 <div class="wpie-fieldset">
55 <div class="wpie-legend"><?php esc_html_e( 'Drop Shadow', 'button-generation' ); ?></div>
56 <div class="wpie-fields">
57 <?php $field->create( 'shadow' ); ?>
58 <?php $field->create( 'shadow_h_offset' ); ?>
59 <?php $field->create( 'shadow_v_offset' ); ?>
60 <?php $field->create( 'shadow_blur' ); ?>
61 <?php $field->create( 'shadow_spread' ); ?>
62 <?php $field->create( 'shadow_color' ); ?>
63 </div>
64 </div>
65 <div class="wpie-fieldset">
66 <div class="wpie-legend"><?php esc_html_e( 'Font', 'button-generation' ); ?></div>
67 <div class="wpie-fields">
68 <?php $field->create( 'icon_size' ); ?>
69 </div>
70 <div class="wpie-fields">
71 <?php $field->create( 'font_size' ); ?>
72 <?php $field->create( 'font_family' ); ?>
73 <?php $field->create( 'font_weight' ); ?>
74 <?php $field->create( 'font_style' ); ?>
75 </div>
76 </div>
77
78
79 <?php
80