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
|
<?php
$group_filter = 'Filter'; $group_color = 'Color';
// Shortcode settings return array( 'name' => esc_html__( 'Facebook Page Box', 'penci-framework' ), 'params' => array_merge( Penci_Framework_Shortcode_Params::block_title( ), array( array( 'type' => 'textfield', 'heading' => esc_html__( 'Facebook Page Title:', 'penci-framework' ), 'param_name' => 'title_page', 'std' => esc_html__( 'Facebook', 'penci-framework' ), ), array( 'type' => 'textfield', 'heading' => esc_html__( 'Facebook Page URL:', 'penci-framework' ), 'param_name' => 'page_url', 'admin_label' => true, 'description' => esc_html__( 'EG. http://www.facebook.com/demo', 'penci-framework' ), ), array( 'type' => 'textfield', 'heading' => esc_html__( 'Facebook Page Height::', 'penci-framework' ), 'param_name' => 'height', 'std' => 290, 'description' => esc_html__( 'This option is only applied when "Show Stream" option is checked', 'penci-framework' ), ), array( 'type' => 'checkbox', 'heading' => esc_html__( 'Hide Faces', 'penci-framework' ), 'param_name' => 'faces', ),array( 'type' => 'checkbox', 'heading' => esc_html__( 'Hide Stream', 'penci-framework' ), 'param_name' => 'stream', ) ), Penci_Framework_Shortcode_Params::block_option_meta( array( 'hide_heading_meta_settings','hide_enable_stiky' ) ), Penci_Framework_Shortcode_Params::block_option_block_title( ), Penci_Framework_Shortcode_Params::color_params( 'penci_widget_archive', false ), Penci_Framework_Shortcode_Params::block_option_note_custom_fonts(), 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( 'oswald' ), 'font-size' => '18px', ) ) ) );
|