SILENT KILLERPanel

Current Path: > home > codekrsu > > escapematrixonline.com > > wp-content > themes > vandana-lite > inc


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: /home/codekrsu//escapematrixonline.com//wp-content/themes/vandana-lite/inc

NameTypeSizeLast ModifiedActions
css Directory - -
custom-controls Directory - -
customizer Directory - -
customizer-plugin-recommend Directory - -
dashboard Directory - -
js Directory - -
tgmpa Directory - -
class-webfont-loader.php File 19237 bytes May 13 2025 15:38:53.
custom-functions.php File 32637 bytes May 13 2025 15:38:53.
elementor-compatibility.php File 1572 bytes May 13 2025 15:38:53.
extras.php File 64026 bytes May 13 2025 15:38:53.
fontawesome.php File 44496 bytes May 13 2025 15:38:53.
metabox.php File 4860 bytes May 13 2025 15:38:53.
newsletter-functions.php File 813 bytes May 13 2025 15:38:53.
partials.php File 6111 bytes May 13 2025 15:38:53.
template-functions.php File 23442 bytes May 13 2025 15:38:53.
toolkit-functions.php File 9010 bytes May 13 2025 15:38:53.
typography.php File 13710 bytes May 13 2025 15:38:53.
widgets.php File 3736 bytes May 13 2025 15:38:53.
woocommerce-functions.php File 5038 bytes May 13 2025 15:38:53.

Reading File: /home/codekrsu//escapematrixonline.com//wp-content/themes/vandana-lite/inc/metabox.php

<?php 
/**
* Vandana Lite Metabox for Sidebar Layout
*
* @package Vandana_Lite
*
*/ 

function vandana_lite_add_sidebar_layout_box(){
    $post_id   = isset( $_GET['post'] ) ? $_GET['post'] : '';
    $template  = get_post_meta( $post_id, '_wp_page_template', true );
    $templates = array( 'templates/blossom-portfolio.php' );
    
    //for post
    add_meta_box( 
        'vandana_lite_sidebar_layout',
        __( 'Sidebar Layout', 'vandana-lite' ),
        'vandana_lite_sidebar_layout_callback', 
        'post',
        'normal',
        'high'
    );

    if( ! in_array( $template, $templates ) ){
        add_meta_box( 
            'vandana_lite_sidebar_layout',
            __( 'Sidebar Layout', 'vandana-lite' ),
            'vandana_lite_sidebar_layout_callback', 
            'page',
            'normal',
            'high'
        );
    }
}
add_action( 'add_meta_boxes', 'vandana_lite_add_sidebar_layout_box' );

$vandana_lite_sidebar_layout = array(    
    'default-sidebar'=> array(
         'value'     => 'default-sidebar',
         'label'     => __( 'Default Sidebar', 'vandana-lite' ),
         'thumbnail' => esc_url( get_template_directory_uri() . '/images/default-sidebar.png' ),
    ),
    'no-sidebar'     => array(
         'value'     => 'no-sidebar',
         'label'     => __( 'Full Width', 'vandana-lite' ),
         'thumbnail' => esc_url( get_template_directory_uri() . '/images/full-width.png' ),
    ),
    'centered'     => array(
         'value'     => 'centered',
         'label'     => __( 'Full Width Centered', 'vandana-lite' ),
         'thumbnail' => esc_url( get_template_directory_uri() . '/images/full-width-centered.png' ),
    ),    
    'left-sidebar' => array(
         'value'     => 'left-sidebar',
         'label'     => __( 'Left Sidebar', 'vandana-lite' ),
         'thumbnail' => esc_url( get_template_directory_uri() . '/images/left-sidebar.png' ),         
    ),
    'right-sidebar' => array(
         'value'     => 'right-sidebar',
         'label'     => __( 'Right Sidebar', 'vandana-lite' ),
         'thumbnail' => esc_url( get_template_directory_uri() . '/images/right-sidebar.png' ),          
     )    
);

function vandana_lite_sidebar_layout_callback(){
    global $post , $vandana_lite_sidebar_layout;
    wp_nonce_field( basename( __FILE__ ), 'vandana_lite_nonce' ); ?> 
    <table class="form-table">
        <tr>
            <td colspan="4"><em class="f13"><?php esc_html_e( 'Choose Sidebar Template', 'vandana-lite' ); ?></em></td>
        </tr>
        <tr>
            <td>
                <?php  
                    foreach( $vandana_lite_sidebar_layout as $field ){  
                        $layout = get_post_meta( $post->ID, '_vandana_lite_sidebar_layout', true ); ?>
                        <div class="hide-radio radio-image-wrapper" style="float:left; margin-right:30px;">
                            <input id="<?php echo esc_attr( $field['value'] ); ?>" type="radio" name="vandana_lite_sidebar_layout" value="<?php echo esc_attr( $field['value'] ); ?>" <?php checked( $field['value'], $layout ); if( empty( $layout ) ){ checked( $field['value'], 'default-sidebar' ); }?>/>
                            <label class="description" for="<?php echo esc_attr( $field['value'] ); ?>">
                                <img src="<?php echo esc_url( $field['thumbnail'] ); ?>" alt="<?php echo esc_attr( $field['label'] ); ?>" />
                            </label>
                        </div>
                        <?php 
                    } // end foreach 
                ?>
                <div class="clear"></div>
            </td>
        </tr>
    </table> 
<?php 
}

function vandana_lite_save_sidebar_layout( $post_id ){
    global $vandana_lite_sidebar_layout;

    // Verify the nonce before proceeding.
    if( !isset( $_POST[ 'vandana_lite_nonce' ] ) || !wp_verify_nonce( $_POST[ 'vandana_lite_nonce' ], basename( __FILE__ ) ) )
        return;
    
    // Stop WP from clearing custom fields on autosave
    if( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE )  
        return;

    if( 'page' == $_POST['post_type'] ){  
        if( ! current_user_can( 'edit_page', $post_id ) ) return $post_id;  
    }elseif( ! current_user_can( 'edit_post', $post_id ) ){  
        return $post_id;  
    }

    $layout = isset( $_POST['vandana_lite_sidebar_layout'] ) ? sanitize_key( $_POST['vandana_lite_sidebar_layout'] ) : 'default-sidebar';

    if( array_key_exists( $layout, $vandana_lite_sidebar_layout ) ){
        update_post_meta( $post_id, '_vandana_lite_sidebar_layout', $layout );
    }else{
        delete_post_meta( $post_id, '_vandana_lite_sidebar_layout' );
    }
}
add_action( 'save_post' , 'vandana_lite_save_sidebar_layout' );

SILENT KILLER Tool