HEX
Server: Apache/2
System: Linux sv156.hostsevenplus.com 4.18.0-553.126.1.el8_10.x86_64 #1 SMP Thu May 28 06:44:09 EDT 2026 x86_64
User: npaaenew (1145)
PHP: 8.5.0
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/npaaenew/public_html/wp-content/themes/bridge/framework/admin/options/parallax/map.php
<?php
if(!function_exists('bridge_qode_parallax_options_map')) {
    /**
     * Parallax options page
     */
    function bridge_qode_parallax_options_map() {

        $parallaxPage = new BridgeQodeAdminPage("_parallax", esc_html__( 'Parallax','bridge'), "fa fa-arrows-v");
        bridge_qode_framework()->qodeOptions->addAdminPage("Parallax", $parallaxPage);

        //Parallax Settings

        $panel1 = new BridgeQodePanel(esc_html__( 'Parallax Settings', 'bridge'), "parallax_settings_panel");
        $parallaxPage->addChild("panel1", $panel1);

        $parallax_onoff = new BridgeQodeField("onoff", "parallax_onoff", "on", esc_html__( 'Parallax on touch devices', 'bridge'), esc_html__( 'Enabling this option will allow parallax on touch devices', 'bridge'));
        $panel1->addChild("parallax_onoff", $parallax_onoff);

        $parallax_minheight = new BridgeQodeField("text", "parallax_minheight", "400", esc_html__( 'Parallax Min Height (px)', 'bridge'), esc_html__( 'Set a minimum height for parallax images on small displays (phones, tablets, etc.)', 'bridge'));
        $panel1->addChild("parallax_minheight", $parallax_minheight);
    }
    add_action('bridge_qode_action_options_map','bridge_qode_parallax_options_map',160);
}