Submit
Path:
~
/
home
/
getwphos
/
www
/
almajd14
/
wp-content
/
plugins
/
halstein-core
/
inc
/
mobile-header
/
dashboard
/
admin
/
File Content:
mobile-logo-options.php
<?php if ( ! function_exists( 'halstein_core_add_mobile_logo_options' ) ) { /** * Function that add general options for this module * * @param object $page * @param object $mobile_header_tab */ function halstein_core_add_mobile_logo_options( $page, $mobile_header_tab ) { if ( $page ) { $mobile_header_tab = $page->add_tab_element( array( 'name' => 'tab-mobile-header', 'icon' => 'fa fa-cog', 'title' => esc_html__( 'Mobile Header Logo Options', 'halstein-core' ), 'description' => esc_html__( 'Set options for mobile headers', 'halstein-core' ), ) ); $mobile_header_tab->add_field_element( array( 'field_type' => 'text', 'name' => 'qodef_mobile_logo_height', 'title' => esc_html__( 'Mobile Logo Height', 'halstein-core' ), 'description' => esc_html__( 'Enter mobile logo height', 'halstein-core' ), 'args' => array( 'suffix' => esc_html__( 'px', 'halstein-core' ), ), ) ); $mobile_header_tab->add_field_element( array( 'field_type' => 'text', 'name' => 'qodef_mobile_logo_padding', 'title' => esc_html__( 'Mobile Logo Padding', 'halstein-core' ), 'description' => esc_html__( 'Enter mobile logo padding value (top right bottom left)', 'halstein-core' ), ) ); $mobile_header_tab->add_field_element( array( 'field_type' => 'select', 'name' => 'qodef_mobile_logo_source', 'title' => esc_html__( 'Mobile Logo Source', 'halstein-core' ), 'options' => array( 'image' => esc_html__( 'Image', 'halstein-core' ), 'svg-path' => esc_html__( 'SVG Path', 'halstein-core' ), 'textual' => esc_html__( 'Textual', 'halstein-core' ), ), 'default_value' => 'image', ) ); $logo_image_section = $mobile_header_tab->add_section_element( array( 'title' => esc_html__( 'Image settings', 'halstein-core' ), 'name' => 'qodef_mobile_logo_image_section', 'dependency' => array( 'show' => array( 'qodef_mobile_logo_source' => array( 'values' => 'image', 'default_value' => 'image', ), ), ), ) ); $logo_image_section->add_field_element( array( 'field_type' => 'image', 'name' => 'qodef_mobile_logo_main', 'title' => esc_html__( 'Mobile Logo - Main', 'halstein-core' ), 'description' => esc_html__( 'Choose main mobile logo image', 'halstein-core' ), 'default_value' => defined( 'HALSTEIN_ASSETS_ROOT' ) ? HALSTEIN_ASSETS_ROOT . '/img/logo.png' : '', 'multiple' => 'no', ) ); // Hook to include additional options after section part do_action( 'halstein_core_action_after_mobile_logo_image_section_options_map', $page, $mobile_header_tab, $logo_image_section ); $logo_svg_path_section = $mobile_header_tab->add_section_element( array( 'title' => esc_html__( 'SVG settings', 'halstein-core' ), 'name' => 'qodef_mobile_logo_svg_path_section', 'dependency' => array( 'show' => array( 'qodef_mobile_logo_source' => array( 'values' => 'svg-path', 'default_value' => 'image', ), ), ), ) ); $logo_svg_path_section->add_field_element( array( 'field_type' => 'textarea', 'name' => 'qodef_mobile_logo_svg_path', 'title' => esc_html__( 'Logo SVG Path', 'halstein-core' ), 'description' => esc_html__( 'Enter your logo icon SVG path here. Please remove version and id attributes from your SVG path because of HTML validation', 'halstein-core' ), ) ); $logo_svg_path_section_row = $logo_svg_path_section->add_row_element( array( 'name' => 'qodef_mobile_logo_svg_path_section_row', 'title' => esc_html__( 'SVG Styles', 'halstein-core' ), ) ); $logo_svg_path_section_row->add_field_element( array( 'field_type' => 'color', 'name' => 'qodef_mobile_logo_svg_path_color', 'title' => esc_html__( 'Color', 'halstein-core' ), 'args' => array( 'col_width' => 3, ), ) ); $logo_svg_path_section_row->add_field_element( array( 'field_type' => 'color', 'name' => 'qodef_mobile_logo_svg_path_hover_color', 'title' => esc_html__( 'Hover Color', 'halstein-core' ), 'args' => array( 'col_width' => 3, ), ) ); $logo_svg_path_section_row->add_field_element( array( 'field_type' => 'text', 'name' => 'qodef_mobile_logo_svg_path_size', 'title' => esc_html__( 'SVG Icon Size', 'halstein-core' ), 'args' => array( 'col_width' => 3, ), ) ); // Hook to include additional options after section part do_action( 'halstein_core_action_after_mobile_logo_svg_path_section_options_map', $page, $mobile_header_tab, $logo_svg_path_section ); $logo_textual_section = $mobile_header_tab->add_section_element( array( 'title' => esc_html__( 'Textual settings', 'halstein-core' ), 'name' => 'qodef_mobile_logo_textual_section', 'dependency' => array( 'show' => array( 'qodef_mobile_logo_source' => array( 'values' => 'textual', 'default_value' => 'image', ), ), ), ) ); $logo_textual_section->add_field_element( array( 'field_type' => 'text', 'name' => 'qodef_mobile_logo_text', 'title' => esc_html__( 'Logo Text', 'halstein-core' ), 'description' => esc_html__( 'Fill your text to be as Logo image', 'halstein-core' ), ) ); $logo_textual_section_row = $logo_textual_section->add_row_element( array( 'name' => 'qodef_mobile_logo_textual_section_row', 'title' => esc_html__( 'Typography Styles', 'halstein-core' ), ) ); $logo_textual_section_row->add_field_element( array( 'field_type' => 'color', 'name' => 'qodef_mobile_logo_text_color', 'title' => esc_html__( 'Color', 'halstein-core' ), 'args' => array( 'col_width' => 3, ), ) ); $logo_textual_section_row->add_field_element( array( 'field_type' => 'color', 'name' => 'qodef_mobile_logo_text_hover_color', 'title' => esc_html__( 'Hover Color', 'halstein-core' ), 'args' => array( 'col_width' => 3, ), ) ); $logo_textual_section_row->add_field_element( array( 'field_type' => 'font', 'name' => 'qodef_mobile_logo_text_font_family', 'title' => esc_html__( 'Font Family', 'halstein-core' ), 'args' => array( 'col_width' => 3, ), ) ); $logo_textual_section_row->add_field_element( array( 'field_type' => 'text', 'name' => 'qodef_mobile_logo_text_font_size', 'title' => esc_html__( 'Font Size', 'halstein-core' ), 'args' => array( 'col_width' => 3, ), ) ); $logo_textual_section_row->add_field_element( array( 'field_type' => 'text', 'name' => 'qodef_mobile_logo_text_line_height', 'title' => esc_html__( 'Line Height', 'halstein-core' ), 'args' => array( 'col_width' => 3, ), ) ); $logo_textual_section_row->add_field_element( array( 'field_type' => 'text', 'name' => 'qodef_mobile_logo_text_letter_spacing', 'title' => esc_html__( 'Letter Spacing', 'halstein-core' ), 'args' => array( 'col_width' => 3, ), ) ); $logo_textual_section_row->add_field_element( array( 'field_type' => 'select', 'name' => 'qodef_mobile_logo_text_font_weight', 'title' => esc_html__( 'Font Weight', 'halstein-core' ), 'options' => halstein_core_get_select_type_options_pool( 'font_weight' ), 'args' => array( 'col_width' => 3, ), ) ); $logo_textual_section_row->add_field_element( array( 'field_type' => 'select', 'name' => 'qodef_mobile_logo_text_text_transform', 'title' => esc_html__( 'Text Transform', 'halstein-core' ), 'options' => halstein_core_get_select_type_options_pool( 'text_transform' ), 'args' => array( 'col_width' => 3, ), ) ); $logo_textual_section_row->add_field_element( array( 'field_type' => 'select', 'name' => 'qodef_mobile_logo_text_font_style', 'title' => esc_html__( 'Font Style', 'halstein-core' ), 'options' => halstein_core_get_select_type_options_pool( 'font_style' ), 'args' => array( 'col_width' => 3, ), ) ); $logo_textual_section_row->add_field_element( array( 'field_type' => 'select', 'name' => 'qodef_mobile_logo_text_text_decoration', 'title' => esc_html__( 'Text Decoration', 'halstein-core' ), 'options' => halstein_core_get_select_type_options_pool( 'text_decoration' ), 'args' => array( 'col_width' => 3, ), ) ); $logo_textual_section_row->add_field_element( array( 'field_type' => 'select', 'name' => 'qodef_mobile_logo_text_hover_text_decoration', 'title' => esc_html__( 'Hover Text Decoration', 'halstein-core' ), 'options' => halstein_core_get_select_type_options_pool( 'text_decoration' ), 'args' => array( 'col_width' => 3, ), ) ); // Hook to include additional options after section part do_action( 'halstein_core_action_after_mobile_logo_textual_section_options_map', $page, $mobile_header_tab, $logo_textual_section ); do_action( 'halstein_core_action_after_mobile_logo_options_map', $page ); } } add_action( 'halstein_core_action_after_header_logo_options_map', 'halstein_core_add_mobile_logo_options', 10, 2 ); }
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
mobile-header-options.php
5948 bytes
0644
mobile-logo-options.php
9957 bytes
0644
mobile-menu-options.php
9457 bytes
0644
N4ST4R_ID | Naxtarrr