PATH:
home
/
lab2454c
/
fcxpro.com
/
wp-content
/
plugins
/
webon-core
/
inc
/
fullscreen-menu
/
dashboard
/
admin
<?php if ( ! function_exists( 'webon_core_fullscreen_menu_options' ) ) { /** * Function that add global options for current module */ function webon_core_fullscreen_menu_options() { $qode_framework = qode_framework_get_framework_root(); $page = $qode_framework->add_options_page( array( 'scope' => WEBON_CORE_OPTIONS_NAME, 'type' => 'admin', 'slug' => 'fullscreen-menu', 'icon' => 'fa fa-cog', 'title' => esc_html__( 'Fullscreen Menu', 'webon-core' ), 'description' => esc_html__( 'Global Fullscreen Menu Options', 'webon-core' ) ) ); if ( $page ) { $page->add_field_element( array( 'field_type' => 'yesno', 'name' => 'qodef_fullscreen_menu_in_grid', 'title' => esc_html__( 'Fullscreen Menu in Grid', 'webon-core' ), 'default_value' => 'yes' ) ); $page->add_field_element( array( 'field_type' => 'select', 'name' => 'qodef_fullscreen_menu_icon_source', 'title' => esc_html__( 'Icon Source', 'webon-core' ), 'options' => webon_core_get_select_type_options_pool( 'icon_source', false ), 'default_value' => 'icon_pack' ) ); $page->add_field_element( array( 'field_type' => 'select', 'name' => 'qodef_fullscreen_menu_icon_pack', 'title' => esc_html__( 'Icon Pack', 'webon-core' ), 'options' => qode_framework_icons()->get_icon_packs( array( 'linea-icons', 'dripicons', 'simple-line-icons' ) ), 'default_value' => 'elegant-icons', 'dependency' => array( 'show' => array( 'qodef_fullscreen_menu_icon_source' => array( 'values' => 'icon_pack', 'default_value' => 'icon_pack' ) ) ) ) ); $section_svg_path = $page->add_section_element( array( 'title' => esc_html__( 'SVG Path', 'webon-core' ), 'name' => 'qodef_fullscreen_menu_svg_path_section', 'dependency' => array( 'show' => array( 'qodef_fullscreen_menu_icon_source' => array( 'values' => 'svg_path', 'default_value' => 'icon_pack' ) ) ) ) ); $section_svg_path->add_field_element( array( 'field_type' => 'textarea', 'name' => 'qodef_fullscreen_menu_icon_svg_path', 'title' => esc_html__( 'Fullscreen Menu Open Icon SVG Path', 'webon-core' ), 'description' => esc_html__( 'Enter your full screen menu open icon SVG path here. Please remove version and id attributes from your SVG path because of HTML validation', 'webon-core' ) ) ); $section_svg_path->add_field_element( array( 'field_type' => 'textarea', 'name' => 'qodef_fullscreen_menu_close_icon_svg_path', 'title' => esc_html__( 'Fullscreen Menu Close Icon SVG Path', 'webon-core' ), 'description' => esc_html__( 'Enter your full screen menu close icon SVG path here. Please remove version and id attributes from your SVG path because of HTML validation', 'webon-core' ), ) ); // Hook to include additional options after module options do_action( 'webon_core_action_after_fullscreen_menu_options_map', $page ); } } add_action( 'webon_core_action_default_options_init', 'webon_core_fullscreen_menu_options', webon_core_get_admin_options_map_position( 'fullscreen-menu' ) ); }
[-] fullscreen-menu-typography-options.php
[edit]
[+]
..
[-] fullscreen-menu-options.php
[edit]