File: /home/lesanew/www/wp-content/plugins/neobeat-core/inc/typography/dashboard/admin/p-options.php
<?php
if ( ! function_exists( 'neobeat_core_add_p_typography_options' ) ) {
/**
* Function that add general options for this module
*/
function neobeat_core_add_p_typography_options( $page ) {
if( $page ) {
$paragraph_tab = $page->add_tab_element(
array(
'name' => 'tab-paragraph',
'icon' => 'fa fa-cog',
'title' => esc_html__( 'Paragraph Typography', 'neobeat-core' ),
'description' => esc_html__( 'Set values for paragraph', 'neobeat-core' )
)
);
$p_typography_section = $paragraph_tab->add_section_element(
array(
'name' => 'qodef_general_typography_p',
'title' => esc_html__( 'General Typography', 'neobeat-core' )
)
);
$p_typography_row = $p_typography_section->add_row_element(
array (
'name' => 'qodef_p_typography_row',
)
);
$p_typography_row->add_field_element(
array(
'field_type' => 'color',
'name' => 'qodef_p_color',
'title' => esc_html__( 'Color', 'neobeat-core' ),
'args' => array(
'col_width' => 3
)
)
);
$p_typography_row->add_field_element(
array(
'field_type' => 'font',
'name' => 'qodef_p_font_family',
'title' => esc_html__( 'Font Family', 'neobeat-core' ),
'args' => array(
'col_width' => 3
)
)
);
$p_typography_row->add_field_element(
array(
'field_type' => 'text',
'name' => 'qodef_p_font_size',
'title' => esc_html__( 'Font Size', 'neobeat-core' ),
'args' => array(
'col_width' => 3
)
)
);
$p_typography_row->add_field_element(
array(
'field_type' => 'text',
'name' => 'qodef_p_line_height',
'title' => esc_html__( 'Line Height', 'neobeat-core' ),
'args' => array(
'col_width' => 3
)
)
);
$p_typography_row->add_field_element(
array(
'field_type' => 'text',
'name' => 'qodef_p_letter_spacing',
'title' => esc_html__( 'Letter Spacing', 'neobeat-core' ),
'args' => array(
'col_width' => 3
)
)
);
$p_typography_row->add_field_element(
array(
'field_type' => 'select',
'name' => 'qodef_p_font_weight',
'title' => esc_html__( 'Font Weight', 'neobeat-core' ),
'options' => neobeat_core_get_select_type_options_pool( 'font_weight' ),
'args' => array(
'col_width' => 3
)
)
);
$p_typography_row->add_field_element(
array(
'field_type' => 'select',
'name' => 'qodef_p_text_transform',
'title' => esc_html__( 'Text Transform', 'neobeat-core' ),
'options' => neobeat_core_get_select_type_options_pool( 'text_transform' ),
'args' => array(
'col_width' => 3
)
)
);
$p_typography_row->add_field_element(
array(
'field_type' => 'select',
'name' => 'qodef_p_font_style',
'title' => esc_html__( 'Font Style', 'neobeat-core' ),
'options' => neobeat_core_get_select_type_options_pool( 'font_style' ),
'args' => array(
'col_width' => 3
)
)
);
$p_typography_row->add_field_element(
array(
'field_type' => 'text',
'name' => 'qodef_p_margin_top',
'title' => esc_html__( 'Margin Top', 'neobeat-core' ),
'args' => array(
'col_width' => 3
)
)
);
$p_typography_row->add_field_element(
array(
'field_type' => 'text',
'name' => 'qodef_p_margin_bottom',
'title' => esc_html__( 'Margin Bottom', 'neobeat-core' ),
'args' => array(
'col_width' => 3
)
)
);
/* 1024 styles */
$p_1024_typography_section = $paragraph_tab->add_section_element(
array(
'name' => 'qodef_responsive_1024_typography_p',
'title' => esc_html__( 'Responsive 1024 Typography', 'neobeat-core' )
)
);
$responsive_1024_typography_p_row = $p_1024_typography_section->add_row_element(
array(
'name' => 'qodef_responsive_1024_p_typography_row'
)
);
$responsive_1024_typography_p_row->add_field_element(
array(
'field_type' => 'text',
'name' => 'qodef_p_responsive_1024_font_size',
'title' => esc_html__( 'Font Size', 'neobeat-core' ),
'args' => array(
'col_width' => 4
)
)
);
$responsive_1024_typography_p_row->add_field_element(
array(
'field_type' => 'text',
'name' => 'qodef_p_responsive_1024_line_height',
'title' => esc_html__( 'Line Height', 'neobeat-core' ),
'args' => array(
'col_width' => 4
)
)
);
$responsive_1024_typography_p_row->add_field_element(
array(
'field_type' => 'text',
'name' => 'qodef_p_responsive_1024_letter_spacing',
'title' => esc_html__( 'Letter Spacing', 'neobeat-core' ),
'args' => array(
'col_width' => 4
)
)
);
/* 768 styles */
$p_768_typography_section = $paragraph_tab->add_section_element(
array(
'name' => 'qodef_responsive_768_typography_p',
'title' => esc_html__( 'Responsive 768 Typography', 'neobeat-core' )
)
);
$responsive_768_typography_p_row = $p_768_typography_section->add_row_element(
array(
'name' => 'qodef_responsive_768_p_typography_row'
)
);
$responsive_768_typography_p_row->add_field_element(
array(
'field_type' => 'text',
'name' => 'qodef_p_responsive_768_font_size',
'title' => esc_html__( 'Font Size', 'neobeat-core' ),
'args' => array(
'col_width' => 4
)
)
);
$responsive_768_typography_p_row->add_field_element(
array(
'field_type' => 'text',
'name' => 'qodef_p_responsive_768_line_height',
'title' => esc_html__( 'Line Height', 'neobeat-core' ),
'args' => array(
'col_width' => 4
)
)
);
$responsive_768_typography_p_row->add_field_element(
array(
'field_type' => 'text',
'name' => 'qodef_p_responsive_768_letter_spacing',
'title' => esc_html__( 'Letter Spacing', 'neobeat-core' ),
'args' => array(
'col_width' => 4
)
)
);
/* 680 styles */
$p_680_typography_section = $paragraph_tab->add_section_element(
array(
'name' => 'qodef_responsive_680_typography_p',
'title' => esc_html__( 'Responsive 680 Typography', 'neobeat-core' )
)
);
$responsive_680_typography_p_row = $p_680_typography_section->add_row_element(
array(
'name' => 'qodef_responsive_680_p_typography_row'
)
);
$responsive_680_typography_p_row->add_field_element(
array(
'field_type' => 'text',
'name' => 'qodef_p_responsive_680_font_size',
'title' => esc_html__( 'Font Size', 'neobeat-core' ),
'args' => array(
'col_width' => 4
)
)
);
$responsive_680_typography_p_row->add_field_element(
array(
'field_type' => 'text',
'name' => 'qodef_p_responsive_680_line_height',
'title' => esc_html__( 'Line Height', 'neobeat-core' ),
'args' => array(
'col_width' => 4
)
)
);
$responsive_680_typography_p_row->add_field_element(
array(
'field_type' => 'text',
'name' => 'qodef_p_responsive_680_letter_spacing',
'title' => esc_html__( 'Letter Spacing', 'neobeat-core' ),
'args' => array(
'col_width' => 4
)
)
);
}
}
add_action( 'neobeat_core_action_after_typography_options_map', 'neobeat_core_add_p_typography_options' );
}