Submit
Path:
~
/
home
/
getwphos
/
www
/
almajd14
/
wp-content
/
plugins
/
halstein-core
/
inc
/
header
/
dashboard
/
admin
/
File Content:
logo-options.php
<?php if ( ! function_exists( 'halstein_core_add_logo_options' ) ) { /** * Function that add general options for this module */ function halstein_core_add_logo_options() { $qode_framework = qode_framework_get_framework_root(); $page = $qode_framework->add_options_page( array( 'scope' => HALSTEIN_CORE_OPTIONS_NAME, 'type' => 'admin', 'slug' => 'logo', 'icon' => 'fa fa-cog', 'title' => esc_html__( 'Logo', 'halstein-core' ), 'description' => esc_html__( 'Global Logo Options', 'halstein-core' ), 'layout' => 'tabbed', ) ); if ( $page ) { $header_tab = $page->add_tab_element( array( 'name' => 'tab-header', 'icon' => 'fa fa-cog', 'title' => esc_html__( 'Header Logo Options', 'halstein-core' ), 'description' => esc_html__( 'Set options for initial headers', 'halstein-core' ), ) ); $header_tab->add_field_element( array( 'field_type' => 'text', 'name' => 'qodef_logo_height', 'title' => esc_html__( 'Logo Height', 'halstein-core' ), 'description' => esc_html__( 'Enter logo height', 'halstein-core' ), 'args' => array( 'suffix' => esc_html__( 'px', 'halstein-core' ), ), ) ); $header_tab->add_field_element( array( 'field_type' => 'yesno', 'name' => 'qodef_logo_enable_independent_height', 'title' => esc_html__( 'Enable Logo Independent Height', 'halstein-core' ), 'description' => esc_html__( 'Enabling this option will make Logo have independant height regardless of the holder height', 'halstein-core' ), 'default_value' => 'no', ) ); $header_tab->add_field_element( array( 'field_type' => 'yesno', 'name' => 'qodef_logo_enable_height_for_sticky', 'title' => esc_html__( 'Enable Logo Height For Sticky Header', 'halstein-core' ), 'description' => esc_html__( 'Enabling this option will apply logo height value to the sticky header logo', 'halstein-core' ), 'default_value' => 'no', ) ); $header_tab->add_field_element( array( 'field_type' => 'text', 'name' => 'qodef_logo_padding', 'title' => esc_html__( 'Logo Padding', 'halstein-core' ), 'description' => esc_html__( 'Enter logo padding value (top right bottom left)', 'halstein-core' ), ) ); $header_tab->add_field_element( array( 'field_type' => 'text', 'name' => 'qodef_logo_responsive_padding', 'title' => esc_html__( 'Logo Responsive Padding', 'halstein-core' ), 'description' => esc_html__( 'Enter logo padding value (top right bottom left) for screens under 1440', 'halstein-core' ), ) ); $header_tab->add_field_element( array( 'field_type' => 'yesno', 'name' => 'qodef_logo_enable_padding_for_sticky', 'title' => esc_html__( 'Enable Logo Padding For Sticky Header', 'halstein-core' ), 'description' => esc_html__( 'Enabling this option will apply logo padding values to the sticky header logo', 'halstein-core' ), 'default_value' => 'no', ) ); $header_tab->add_field_element( array( 'field_type' => 'color', 'name' => 'qodef_logo_background_color', 'title' => esc_html__( 'Logo Background Color', 'halstein-core' ), 'description' => esc_html__( 'Choose logo background color)', 'halstein-core' ), ) ); $header_tab->add_field_element( array( 'field_type' => 'select', 'name' => 'qodef_logo_source', 'title' => esc_html__( '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 = $header_tab->add_section_element( array( 'title' => esc_html__( 'Image settings', 'halstein-core' ), 'name' => 'qodef_logo_image_section', 'dependency' => array( 'show' => array( 'qodef_logo_source' => array( 'values' => 'image', 'default_value' => 'image', ), ), ), ) ); $logo_image_section->add_field_element( array( 'field_type' => 'image', 'name' => 'qodef_logo_main', 'title' => esc_html__( 'Logo - Main', 'halstein-core' ), 'description' => esc_html__( 'Choose main logo image', 'halstein-core' ), 'default_value' => defined( 'HALSTEIN_ASSETS_ROOT' ) ? HALSTEIN_ASSETS_ROOT . '/img/logo.png' : '', 'multiple' => 'no', ) ); $logo_image_section->add_field_element( array( 'field_type' => 'image', 'name' => 'qodef_logo_dark', 'title' => esc_html__( 'Logo - Dark', 'halstein-core' ), 'description' => esc_html__( 'Choose dark logo image', 'halstein-core' ), 'default_value' => defined( 'HALSTEIN_ASSETS_ROOT' ) ? HALSTEIN_ASSETS_ROOT . '/img/logo.png' : '', 'multiple' => 'no', ) ); $logo_image_section->add_field_element( array( 'field_type' => 'image', 'name' => 'qodef_logo_light', 'title' => esc_html__( 'Logo - Light', 'halstein-core' ), 'description' => esc_html__( 'Choose light logo image', 'halstein-core' ), 'default_value' => defined( 'HALSTEIN_ASSETS_ROOT' ) ? HALSTEIN_ASSETS_ROOT . '/img/logo-light.png' : '', 'multiple' => 'no', ) ); // Hook to include additional options after section part do_action( 'halstein_core_action_after_header_logo_image_section_options_map', $page, $header_tab, $logo_image_section ); $logo_svg_path_section = $header_tab->add_section_element( array( 'title' => esc_html__( 'SVG settings', 'halstein-core' ), 'name' => 'qodef_logo_svg_path_section', 'dependency' => array( 'show' => array( 'qodef_logo_source' => array( 'values' => 'svg-path', 'default_value' => 'image', ), ), ), ) ); $logo_svg_path_section->add_field_element( array( 'field_type' => 'textarea', 'name' => 'qodef_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' ), ) ); // Hook to include additional options before section part do_action( 'halstein_core_action_before_header_logo_svg_path_section_options_map', $page, $header_tab, $logo_svg_path_section ); $logo_svg_path_section_row = $logo_svg_path_section->add_row_element( array( 'name' => 'qodef_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_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_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_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_header_logo_svg_path_section_options_map', $page, $header_tab, $logo_svg_path_section ); $logo_textual_section = $header_tab->add_section_element( array( 'title' => esc_html__( 'Textual settings', 'halstein-core' ), 'name' => 'qodef_logo_textual_section', 'dependency' => array( 'show' => array( 'qodef_logo_source' => array( 'values' => 'textual', 'default_value' => 'image', ), ), ), ) ); $logo_textual_section->add_field_element( array( 'field_type' => 'text', 'name' => 'qodef_logo_text', 'title' => esc_html__( 'Logo Text', 'halstein-core' ), 'description' => esc_html__( 'Fill your text to be as Logo image', 'halstein-core' ), ) ); // Hook to include additional options before section part do_action( 'halstein_core_action_before_header_logo_textual_section_options_map', $page, $header_tab, $logo_textual_section ); $logo_textual_section_row = $logo_textual_section->add_row_element( array( 'name' => 'qodef_logo_textual_section_row', 'title' => esc_html__( 'Typography Styles', 'halstein-core' ), ) ); $logo_textual_section_row->add_field_element( array( 'field_type' => 'color', 'name' => 'qodef_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_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_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_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_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_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_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_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_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_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_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_header_logo_textual_section_options_map', $page, $header_tab, $logo_textual_section ); // Hook to include additional options after module options do_action( 'halstein_core_action_after_header_logo_options_map', $page, $header_tab ); } } add_action( 'halstein_core_action_default_options_init', 'halstein_core_add_logo_options', halstein_core_get_admin_options_map_position( 'logo' ) ); }
Submit
FILE
FOLDER
Name
Size
Permission
Action
header-options.php
2234 bytes
0644
logo-options.php
13231 bytes
0644
N4ST4R_ID | Naxtarrr