Submit
Path:
~
/
home
/
getwphos
/
public_html
/
almajd14
/
wp-content
/
plugins
/
halstein-core
/
inc
/
title
/
dashboard
/
admin
/
File Content:
title-options.php
<?php if ( ! function_exists( 'halstein_core_add_page_title_options' ) ) { /** * Function that add general options for this module */ function halstein_core_add_page_title_options() { $qode_framework = qode_framework_get_framework_root(); $page = $qode_framework->add_options_page( array( 'scope' => HALSTEIN_CORE_OPTIONS_NAME, 'type' => 'admin', 'slug' => 'title', 'icon' => 'fa fa-cog', 'title' => esc_html__( 'Title', 'halstein-core' ), 'description' => esc_html__( 'Global Title Options', 'halstein-core' ), ) ); if ( $page ) { $page->add_field_element( array( 'field_type' => 'yesno', 'name' => 'qodef_enable_page_title', 'title' => esc_html__( 'Enable Page Title', 'halstein-core' ), 'description' => esc_html__( 'Use this option to enable/disable page title', 'halstein-core' ), 'default_value' => 'yes', ) ); $page_title_section = $page->add_section_element( array( 'name' => 'qodef_page_title_section', 'title' => esc_html__( 'Title Area', 'halstein-core' ), 'dependency' => array( 'hide' => array( 'qodef_enable_page_title' => array( 'values' => 'no', 'default_value' => '', ), ), ), ) ); $page_title_section->add_field_element( array( 'field_type' => 'select', 'name' => 'qodef_title_layout', 'title' => esc_html__( 'Title Layout', 'halstein-core' ), 'description' => esc_html__( 'Choose a title layout', 'halstein-core' ), 'options' => apply_filters( 'halstein_core_filter_title_layout_options', array() ), 'default_value' => 'standard', ) ); $page_title_section->add_field_element( array( 'field_type' => 'yesno', 'name' => 'qodef_set_page_title_area_in_grid', 'title' => esc_html__( 'Page Title In Grid', 'halstein-core' ), 'description' => esc_html__( 'Enabling this option will set page title area to be in grid', 'halstein-core' ), 'default_value' => 'yes', ) ); $page_title_section->add_field_element( array( 'field_type' => 'text', 'name' => 'qodef_page_title_height', 'title' => esc_html__( 'Height', 'halstein-core' ), 'description' => esc_html__( 'Enter title height', 'halstein-core' ), 'args' => array( 'suffix' => esc_html__( 'px', 'halstein-core' ), ), ) ); $page_title_section->add_field_element( array( 'field_type' => 'text', 'name' => 'qodef_page_title_height_on_smaller_screens', 'title' => esc_html__( 'Height on Smaller Screens', 'halstein-core' ), 'description' => esc_html__( 'Enter title height to be displayed on smaller screens with active mobile header', 'halstein-core' ), 'args' => array( 'suffix' => esc_html__( 'px', 'halstein-core' ), ), ) ); $page_title_section->add_field_element( array( 'field_type' => 'color', 'name' => 'qodef_page_title_background_color', 'title' => esc_html__( 'Background Color', 'halstein-core' ), 'description' => esc_html__( 'Enter page title area background color', 'halstein-core' ), ) ); $page_title_section->add_field_element( array( 'field_type' => 'image', 'name' => 'qodef_page_title_background_image', 'title' => esc_html__( 'Background Image', 'halstein-core' ), 'description' => esc_html__( 'Enter page title area background image', 'halstein-core' ), ) ); $page_title_section->add_field_element( array( 'field_type' => 'select', 'name' => 'qodef_page_title_background_image_behavior', 'title' => esc_html__( 'Background Image Behavior', 'halstein-core' ), 'options' => array( '' => esc_html__( 'Default', 'halstein-core' ), 'responsive' => esc_html__( 'Set Responsive Image', 'halstein-core' ), 'parallax' => esc_html__( 'Set Parallax Image', 'halstein-core' ), ), ) ); $page_title_section->add_field_element( array( 'field_type' => 'color', 'name' => 'qodef_page_title_color', 'title' => esc_html__( 'Title Color', 'halstein-core' ), ) ); $page_title_section->add_field_element( array( 'field_type' => 'select', 'name' => 'qodef_page_title_tag', 'title' => esc_html__( 'Title Tag', 'halstein-core' ), 'description' => esc_html__( 'Enabling this option will set title tag', 'halstein-core' ), 'options' => halstein_core_get_select_type_options_pool( 'title_tag', false ), 'default_value' => 'h1', ) ); $page_title_section->add_field_element( array( 'field_type' => 'select', 'name' => 'qodef_page_title_text_alignment', 'title' => esc_html__( 'Text Alignment', 'halstein-core' ), 'options' => array( 'left' => esc_html__( 'Left', 'halstein-core' ), 'center' => esc_html__( 'Center', 'halstein-core' ), 'right' => esc_html__( 'Right', 'halstein-core' ), ), 'default_value' => 'left', ) ); $page_title_section->add_field_element( array( 'field_type' => 'select', 'name' => 'qodef_page_title_vertical_text_alignment', 'title' => esc_html__( 'Vertical Text Alignment', 'halstein-core' ), 'options' => array( 'header-bottom' => esc_html__( 'From Bottom of Header', 'halstein-core' ), 'window-top' => esc_html__( 'From Window Top', 'halstein-core' ), ), 'default_value' => 'header-bottom', ) ); // Hook to include additional options after module options do_action( 'halstein_core_action_after_page_title_options_map', $page_title_section ); } } add_action( 'halstein_core_action_default_options_init', 'halstein_core_add_page_title_options', halstein_core_get_admin_options_map_position( 'title' ) ); }
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
title-options.php
6081 bytes
0644
N4ST4R_ID | Naxtarrr