C:\xampp\htdocs\landing\wp-content\plugins\penci-framework\shortcodes\blog_list\settings.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<?php
$shotcode_id 
'block_list';
$group_color 'Color';
// Shortcode settings
return array(
    
'name'    => esc_html__'Blog List No Featured Images''penci-framework' ),
    
'weight'  => 700,
    
'params'  => array_merge(
        
Penci_Framework_Shortcode_Params::block_build_query(),
        array(
            array(
                
'type'       => 'dropdown',
                
'heading'    => esc_html__'Text Align''penci-framework' ),
                
'param_name' => 'text_align',
                
'std'        => 'center',
                
'value'      => array(
                    
esc_html__'Left''penci-framework' )   => 'left',
                    
esc_html__'Center''penci-framework' ) => 'center',
                    
esc_html__'Right''penci-framework' )  => 'right',
                ),
            ),
            array(
                
'type'       => 'dropdown',
                
'heading'    => esc_html__'Column''penci-framework' ),
                
'param_name' => '_column',
                
'value'      => array(
                    
esc_html__'Default''penci-framework' )   => '',
                    
esc_html__'1 Column''penci-framework' )  => '1',
                    
esc_html__'2 Columns''penci-framework' ) => '2',
                    
esc_html__'3 Columns''penci-framework' ) => '3',
                ),
            ),
            array(
                
'type'        => 'textfield',
                
'heading'     => esc_html__'Block title:''penci-framework' ),
                
'param_name'  => 'block_title',
                
'value'       => '',
                
'admin_label' => true,
                
'description' => esc_html__'A title for this block, if you leave it blank the block will not have a title''penci-framework' ),
            ),
        ),
        array(
            array(
                
'type'       => 'textfield',
                
'param_name' => 'post_title_length',
                
'heading'    => esc_html__'Custom Post Title Length:''penci-framework' ),
                
'std'        => '12',
            ),
            array(
                
'type'             => 'colorpicker',
                
'heading'          => esc_html__'Block Title text color''penci-framework' ),
                
'param_name'       => 'block_title_color',
                
'group'            => $group_color,
                
'edit_field_class' => 'vc_col-sm-6',
            ),
            array(
                
'type'             => 'colorpicker',
                
'heading'          => esc_html__'Border bottom of item post color''penci-framework' ),
                
'param_name'       => 'post_border_color',
                
'group'            => $group_color,
                
'edit_field_class' => 'vc_col-sm-6',
            ),
            array(
                
'type'             => 'textfield',
                
'param_name'       => 'post_title_css',
                
'heading'          => esc_html__'Post title colors''penci-framework' ),
                
'value'            => '',
                
'group'            => $group_color,
                
'edit_field_class' => 'penci-param-heading-wrapper no-top-margin vc_column vc_col-sm-12',
            ),
            array(
                
'type'             => 'colorpicker',
                
'heading'          => esc_html__'Post title color''penci-framework' ),
                
'param_name'       => 'post_title_color',
                
'group'            => $group_color,
                
'edit_field_class' => 'vc_col-sm-6',
            ),
            array(
                
'type'             => 'colorpicker',
                
'heading'          => esc_html__'Post title hover color''penci-framework' ),
                
'param_name'       => 'post_title_hover_color',
                
'group'            => $group_color,
                
'edit_field_class' => 'vc_col-sm-6',
            ),
            array(
                
'type'             => 'textfield',
                
'param_name'       => 'post_category_css',
                
'heading'          => esc_html__'Category colors''penci-framework' ),
                
'value'            => '',
                
'group'            => $group_color,
                
'edit_field_class' => 'penci-param-heading-wrapper no-top-margin vc_column vc_col-sm-12',
            ),
            array(
                
'type'             => 'colorpicker',
                
'heading'          => esc_html__'Category color''penci-framework' ),
                
'param_name'       => 'cat_color',
                
'group'            => $group_color,
                
'edit_field_class' => 'vc_col-sm-6',
            ),
            array(
                
'type'             => 'colorpicker',
                
'heading'          => esc_html__'Category hover color''penci-framework' ),
                
'param_name'       => 'cat_hover_color',
                
'group'            => $group_color,
                
'edit_field_class' => 'vc_col-sm-6',
            )
        ),
        
Penci_Framework_Shortcode_Params::block_option_color_meta(),
        
Penci_Framework_Shortcode_Params::block_option_meta( array( 'cat''date''comment' ) ),
        
Penci_Framework_Shortcode_Params::block_option_typo(
            array(
                
'prefix'       => 'block_title',
                
'title'        => esc_html__'Block title settings' ),
                
'google_fonts' => Penci_Helper_Shortcode::get_font_family'muktavaani' ),
                
'font-size'    => '42px',
            )
        ),
        
Penci_Framework_Shortcode_Params::block_option_typo(
            array(
                
'prefix'       => 'post_title',
                
'title'        => esc_html__'Post title settings' ),
                
'google_fonts' => Penci_Helper_Shortcode::get_font_family'muktavaani' ),
                
'font-size'    => '24px',
            )
        ),
        
Penci_Framework_Shortcode_Params::block_option_typo(
            array(
                
'prefix'       => 'cat',
                
'title'        => esc_html__'Categories settings' ),
                
'google_fonts' => Penci_Helper_Shortcode::get_font_family'roboto' ),
                
'font-size'    => '14px',
            )
        ),
        
Penci_Framework_Shortcode_Params::block_option_typo(
            array(
                
'prefix'       => 'post_meta',
                
'title'        => esc_html__'Post meta settings' ),
                
'google_fonts' => Penci_Helper_Shortcode::get_font_family'roboto' ),
                
'font-size'    => '14px',
            )
        ),
        
Penci_Framework_Shortcode_Params::block_option_infeed_ad()

    ),
    
'js_view' => 'VcPenciShortcodeView',
);
x

Windows NT KPTV 6.2 build 9200 (Windows Server 2012 Datacenter Edition) i586