HEX
Server: Apache
System: Linux cp4.skywebbox.com 5.14.0-503.15.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Nov 28 07:25:19 EST 2024 x86_64
User: alfouzantranspor (1054)
PHP: 8.3.23
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/alfouzantranspor/public_html/wp-content/themes/digital-download/inc/metabox.php
<?php 
/**
* Digital Download Metabox for Sidebar Layout
*
* @package Digital_Download
*
*/ 

function digital_download_add_sidebar_layout_box(){
    $post_id   = isset( $_GET['post'] ) ? $_GET['post'] : '';
    $template  = get_post_meta( $post_id, '_wp_page_template', true );
    $templates = array( 'templates/dashboard.php', 'templates/login.php' );
    
    //for post
    add_meta_box( 
        'digital_download_sidebar_layout',
        __( 'Sidebar Layout', 'digital-download' ),
        'digital_download_sidebar_layout_callback', 
        'post',
        'normal',
        'high'
    );
    
    if( ! in_array( $template, $templates ) ){
        add_meta_box( 
            'digital_download_sidebar_layout',
            __( 'Sidebar Layout', 'digital-download' ),
            'digital_download_sidebar_layout_callback', 
            'page',
            'normal',
            'high'
        );
    }
    
}
add_action( 'add_meta_boxes', 'digital_download_add_sidebar_layout_box' );

/**
 * Get sidebar layout data
 *
 * @since 1.0.0
 */
if( ! function_exists( 'digital_download_get_sidebar_layout_data' ) ){
    function digital_download_get_sidebar_layout_data(){
        return array(
            'default-sidebar'=> array(
                'value'     => 'default-sidebar',
                'label'     => __( 'Default Sidebar', 'digital-download' ),
                'thumbnail' => get_template_directory_uri() . '/images/default-sidebar.png'
            ),
            'no-sidebar'     => array(
                'value'     => 'no-sidebar',
                'label'     => __( 'Full Width', 'digital-download' ),
                'thumbnail' => get_template_directory_uri() . '/images/full-width.png'
            ),
            'centered'     => array(
                'value'     => 'centered',
                'label'     => __( 'Full Width Centered', 'digital-download' ),
                'thumbnail' => get_template_directory_uri() . '/images/full-width-centered.png'
            ),    
            'left-sidebar' => array(
                'value'     => 'left-sidebar',
                'label'     => __( 'Left Sidebar', 'digital-download' ),
                'thumbnail' => get_template_directory_uri() . '/images/left-sidebar.png'         
            ),
            'right-sidebar' => array(
                'value'     => 'right-sidebar',
                'label'     => __( 'Right Sidebar', 'digital-download' ),
                'thumbnail' => get_template_directory_uri() . '/images/right-sidebar.png'         
            ) 
        );
    }
}

/**
 * Sidebar layout metabox callback
 *
 * @since 1.0.0
 */
function digital_download_sidebar_layout_callback(){
    global $post;
    $digital_download_sidebar_layout =  digital_download_get_sidebar_layout_data();
    wp_nonce_field( basename( __FILE__ ), 'digital_download_nonce' ); ?> 
    <table class="form-table">
        <tr>
            <td colspan="4"><em class="f13"><?php esc_html_e( 'Choose Sidebar Template', 'digital-download' ); ?></em></td>
        </tr>
        <tr>
            <td>
                <?php  
                    foreach( $digital_download_sidebar_layout as $field ){  
                        $layout = get_post_meta( $post->ID, '_digital_download_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="digital_download_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 
}

/**
 * Save sidebar layout metabox data
 *
 * @since 1.0.0
 */
function digital_download_save_sidebar_layout( $post_id ){
    $digital_download_sidebar_layout =  digital_download_get_sidebar_layout_data();


    // Verify the nonce before proceeding.
    if ( !isset( $_POST[ 'digital_download_nonce' ] ) || !wp_verify_nonce( $_POST[ 'digital_download_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['digital_download_sidebar_layout'] ) ? sanitize_key( $_POST['digital_download_sidebar_layout'] ) : 'default-sidebar';

    if( array_key_exists( $layout, $digital_download_sidebar_layout ) ){
        update_post_meta( $post_id, '_digital_download_sidebar_layout', $layout );
    }else{
        delete_post_meta( $post_id, '_digital_download_sidebar_layout' );
    }   
}
add_action( 'save_post', 'digital_download_save_sidebar_layout' );