__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

[email protected]: ~ $
<?php /**
 * @version 1.0
 * @package Booking Calendar 
 * @category Admin Panel - Dashboard functions
 * @author wpdevelop
 *
 * @web-site https://wpbookingcalendar.com/
 * @email [email protected] 
 * 
 * @modified 2016-03-16
 */

if ( ! defined( 'ABSPATH' ) ) exit;                                             // Exit, if accessed directly


/**
 * Get number of bookings for different parameters
 *
 * @return int[]
 */
function wpbc_db_dashboard_get_bookings_count_arr(){


    // <editor-fold     defaultstate="collapsed"                        desc=" Get bookings for counting number of specific bookings "  >
		$my_resources = array();
		if ( class_exists( 'wpdev_bk_multiuser' ) ) {
			$is_superadmin = apply_bk_filter( 'multiuser_is_user_can_be_here', true, 'only_super_admin' );
			if ( ! $is_superadmin ) {

				$bk_ids = apply_bk_filter( 'get_bk_resources_of_user', false );

				if ( $bk_ids !== false ) {
					foreach ( $bk_ids as $bk_id ) {
						$my_resources[] = $bk_id->ID;
					}
				}
			}
		}
		$my_resources = implode( ',', $my_resources );

		global $wpdb;

		$trash_bookings = '  bk.trash != 1 ';                                //FixIn: 6.1.1.10  - check also  below usage of {$trash_bookings}

		$sql_req = "SELECT DISTINCT bk.booking_id as id, dt.approved, dt.booking_date, bk.modification_date as m_date , bk.is_new as new
					FROM {$wpdb->prefix}bookingdates as dt
					INNER JOIN {$wpdb->prefix}booking as bk
						ON bk.booking_id = dt.booking_id "
					. " WHERE {$trash_bookings} " ;
		if ($my_resources!='') $sql_req .=     " AND  bk.booking_type IN ({$my_resources}) ";

		$sql_req .=     "ORDER BY dt.booking_date" ;
		// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching, WordPress.DB.PreparedSQL.NotPrepared
		$sql_results = $wpdb->get_results( $sql_req );

    // </editor-fold>


    // <editor-fold     defaultstate="collapsed"                        desc=" Count bookings "  >
    $bk_array = array();
    if ( ! empty( $sql_results ) )
        foreach ( $sql_results as $v ) {

            if ( !isset( $bk_array[$v->id] ) )
                $bk_array[$v->id] = array(
                                          'dates' => array()
                                        , 'check_in_date' => array()
                                        , 'check_out_date' => array()
                                        , 'bk_today' => 0
                                        , 'm_today' => 0
                                        );
            $bk_array[$v->id]['id']       = $v->id;
            $bk_array[$v->id]['approved'] = $v->approved;
            $bk_array[$v->id]['dates'][]  = $v->booking_date;

			if ( intval( substr(  $v->booking_date, -1 ) ) == 1 ) {
				$bk_array[$v->id]['check_in_date'][]  = $v->booking_date;
	        }
			if ( intval( substr(  $v->booking_date, -1 ) ) == 2 ) {
				$bk_array[$v->id]['check_out_date'][]  = $v->booking_date;
	        }
            $bk_array[$v->id]['m_date']   = $v->m_date;                         // Modification Booking date
            $bk_array[$v->id]['new']      = $v->new;
	        if ( wpbc_is_today_date( $v->booking_date ) ) {
		        $bk_array[ $v->id ]['bk_today'] = 1;
	        }
	        if ( wpbc_is_today_date( $v->m_date ) ) {
		        $bk_array[ $v->id ]['m_today'] = 1;
	        }
        }

    $counter = array(
                      'all' => 0
                    , 'new' => 0
                    , 'pending' => 0
                    , 'approved' => 0
                    , 'booking_today' => 0
                    , 'was_made_today' => 0
                    , 'check_in_today' => 0
                    , 'check_out_today' => 0
                    , 'check_in_tomorrow' => 0
                    , 'check_out_tomorrow' => 0
    );
    foreach ( $bk_array as $k => $v ) {

        $counter['all']++;
	    if ( $v['new'] ) {
		    $counter['new'] ++;
	    }
	    if ( $v['m_today'] ) {
		    $counter['was_made_today'] ++;
	    }
	    if ( $v['bk_today'] ) {
		    $counter['booking_today'] ++;
	    }
	    if ( $v['approved'] ) {
		    $counter['approved'] ++;
	    } else {
		    $counter['pending'] ++;
	    }


		// Check  in
	    if ( ! empty( $v['check_in_date'] ) ) {
		    foreach ( $v['check_in_date'] as $check_in ) {
				if ( wpbc_is_today_date( $check_in ) ) {
					$counter['check_in_today']++;
				}
				if ( wpbc_is_tomorrow_date( $check_in ) ) {
					$counter['check_in_tomorrow']++;
				}
			}
		} else {
			$check_in = $v['dates'][0];
			if ( wpbc_is_today_date( $check_in ) ) {
				$counter['check_in_today']++;
			}
			if ( wpbc_is_tomorrow_date( $check_in ) ) {
				$counter['check_in_tomorrow']++;
			}
		}
		// Check out
	    if ( ! empty( $v['check_out_date'] ) ) {
		    foreach ( $v['check_out_date'] as $check_out ) {
				if ( wpbc_is_today_date( $check_out ) ) {
					$counter['check_out_today']++;
				}
				if ( wpbc_is_tomorrow_date( $check_out ) ) {
					$counter['check_out_tomorrow']++;
				}
			}
		} else {
			$check_out = $v['dates'][ ( count( $v['dates'] ) - 1 ) ];
			if ( wpbc_is_today_date( $check_out ) ) {
				$counter['check_out_today']++;
			}
			if ( wpbc_is_tomorrow_date( $check_out ) ) {
				$counter['check_out_tomorrow']++;
			}
		}

    }
    // </editor-fold>


	return $counter;
}


////////////////////////////////////////////////////////////////////////////////
// D a s h b o a r d      W i d g e t
////////////////////////////////////////////////////////////////////////////////
    
/** Setup Widget for Dashboard */
function wpbc_dashboard_widget_setup(){            

   // Check, if we have permission  to  show Widget  ///////////////////////////
   $is_user_activated = apply_bk_filter('multiuser_is_current_user_active',  true ); // FixIn: 6.0.1.17.
   if ( ! $is_user_activated ) 
       return false;

   $user_role = get_bk_option( 'booking_user_role_booking' );
   if ( ! wpbc_is_current_user_have_this_role( $user_role ) )
       return false;
   
   
   // Add Booking Calendar Widget  to Dashboard  ///////////////////////////////
   $bk_dashboard_widget_id = 'booking_dashboard_widget';
   wp_add_dashboard_widget( $bk_dashboard_widget_id, sprintf( __( 'Booking Calendar', 'booking' ) ), 'wpbc_dashboard_widget_show', null );

   
   // Sort Dashboard. Add Booking Calendar widget to top ///////////////////////
   global $wp_meta_boxes;
   $normal_dashboard = $wp_meta_boxes['dashboard']['normal']['core'];
   if ( isset( $normal_dashboard[$bk_dashboard_widget_id] ) ) {
        // Backup and delete our new dashbaord widget from the end of the array
        $example_widget_backup = array( $bk_dashboard_widget_id => $normal_dashboard[$bk_dashboard_widget_id] );
        unset( $normal_dashboard[$bk_dashboard_widget_id] );
    } else
        $example_widget_backup = array();

    // Sometimes, some other plugins can modify this item, so its can be not a array
    if ( is_array( $normal_dashboard ) ) {                                      
        // Merge the two arrays together so our widget is at the beginning
        if ( is_array( $normal_dashboard ) )
            $sorted_dashboard = array_merge( $example_widget_backup, $normal_dashboard );
        else
            $sorted_dashboard = $example_widget_backup;
        // Save the sorted array back into the original metaboxes
        $wp_meta_boxes['dashboard']['normal']['core'] = $sorted_dashboard;
    }
}
add_action( 'wp_dashboard_setup', 'wpbc_dashboard_widget_setup' );


/** Show Booking Dashboard Widget content */
function wpbc_dashboard_widget_show() {

	$is_panel_visible = wpbc_is_dismissed_panel_visible( 'wpbc_dashboard_section_statistic' );        // FixIn: 9.9.0.8.
	$counter = $is_panel_visible ? wpbc_db_dashboard_get_bookings_count_arr() : array();

    wpbc_dashboard_widget_css();
                
   ?>        
   <div id="wpbc_dashboard_widget_container" ><?php


       wpbc_dashboard_section_statistic( $counter );  

	   ?><div style="clear:both;"></div><?php
	   wpbc_dashboard_section_version();

	   wpbc_dashboard_section_support();
	   ?><div style="clear:both;margin-bottom:20px;"></div><?php

	   wpbc_dashboard_section_news();

/*
	   ?><div style="clear:both;"></div><?php


	   wpbc_dashboard_section_video_f();

	   wpbc_dashboard_section_video_p();
*/


	   ?><div style="clear:both;"></div>

   </div>
   <div style="clear:both;"></div>   
   <?php
}
    

/** Get Info for Dashboard */
function wpbc_get_dashboard_info() {
    
    ob_start();  
    
    wpbc_dashboard_widget_show();
  
    return ob_get_clean();  
}


/** CSS for Dashboard Widget */
function wpbc_dashboard_widget_css() {
    
    ?><style type="text/css">
        #wpbc_dashboard_widget_container {
            width:100%;
        }
        #wpbc_dashboard_widget_container .wpbc_dashboard_section {
            float:left;
            margin:0px;
            padding:0px;
            width:49%;
        }
        #wpbc_dashboard_widget_container .wpbc_dashboard_section h4 {            
            font-size: 14px;
            font-weight: 600;
            margin: 5px 0 15px;
        }     
        #bk_upgrade_section p {
            font-size: 13px;
            line-height: 1.5em;
            margin: 15px 0 0;
            padding: 0;
        }
        #dashboard-widgets-wrap #wpbc_dashboard_widget_container .wpbc_dashboard_section {
           width:49%;
        }
        #dashboard-widgets-wrap #wpbc_dashboard_widget_container .bk_right {
            float:right
        }
        #dashboard-widgets-wrap #wpbc_dashboard_widget_container .border_orrange, 
        #wpbc_dashboard_widget_container .border_orrange {
            background: #fffaf1 none repeat scroll 0 0;
            border-left: 3px solid #eeab26;
            clear: both;
            margin: 5px 5px 20px;
            padding: 10px 0;
            width: 99%;
        }
        #wpbc_dashboard_widget_container .bk_header {
            color: #555555;
            font-size: 13px;
            font-weight: 600;
            line-height: 1em;
			/* //FixIn: 8.1.3.10	*/
			padding:0 5px;
        }
        #wpbc_dashboard_widget_container .bk_table {
            background:transparent;
            /*border-bottom:none;*/
            /*border-top:1px solid #ECECEC;*/
            margin:6px 0 10px 6px;
            padding:2px 10px;
            width:95%;
            -border-radius:4px;
            -moz-border-radius:4px;
            -webkit-border-radius:4px;
            /*-moz-box-shadow:0 0 2px #C5C3C3;*/
            /*-webkit-box-shadow:0 0 2px #C5C3C3;*/
            /*-box-shadow:0 0 2px #C5C3C3;*/
			border:none;
			box-shadow:none;
        }
        #wpbc_dashboard_widget_container .bk_table td{
            border-bottom:1px solid #DDDDDD;
            line-height:19px;
            padding:4px 0px 4px 10px;
            font-size:13px;
        }
        #wpbc_dashboard_widget_container .bk_table tr td.first{
           text-align:center;
           padding:4px 0px;
        }
        #wpbc_dashboard_widget_container .bk_table tr td a {
            text-decoration: none;
        }
        #wpbc_dashboard_widget_container .bk_table tr td a span{
            font-size:18px;
            font-family: Georgia,"Times New Roman","Bitstream Charter",Times,serif;
        }
        #wpbc_dashboard_widget_container .bk_table td.bk_spec_font a{
            font-family: Georgia,"Times New Roman","Bitstream Charter",Times,serif;
            font-size:14px;
        }
        #wpbc_dashboard_widget_container .bk_table td.bk_spec_font {
            font-family: Georgia,"Times New Roman","Bitstream Charter",Times,serif;
            font-size:13px;
        }
        #wpbc_dashboard_widget_container .bk_table td.pending a{
            color:#E66F00;
        }
        #wpbc_dashboard_widget_container .bk_table td.new-bookings a{
            color:red;
        }
        #wpbc_dashboard_widget_container .bk_table td.actual-bookings a{
            color:green;
        }
        #bk_errror_loading {
             text-align: center;
             font-style: italic;
             font-size:11px;
        }
		#wpbc_dashboard_widget_container .bk_table tr:last-child td {
			border:none;
		}
    </style><?php
}




////////////////////////////////////////////////////////////////////////////////
// S e c t i o n s
////////////////////////////////////////////////////////////////////////////////

// FixIn: 8.1.3.11.
/** Dashboard Section  - Video 1 */
function wpbc_dashboard_section_video_f() {
	return;
    ?>
    <div id='wpbc_dashboard_section_video_f' class="wpbc_dashboard_section bk_left">
        <span class="bk_header"><?php esc_html_e('Video guide' ,'booking'); ?> (free):</span>
		<?php  wpbc_is_dismissed( 'wpbc_dashboard_section_video_f' );        //FixIn: 8.1.3.10  ?>
		<?php // Free ?>
		<div style="text-align: center;margin:10px 0;"><iframe style="width:90%;height:auto;" src="https://www.youtube.com/embed/videoseries?list=PLabuVtqCh9dwLA5cpz1p2RrZOitLuVupR&amp;start=28&amp;rel=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe></div>
    </div>
    <?php
}

// FixIn: 8.1.3.11.
/** Dashboard Section  - Video 2 */
function wpbc_dashboard_section_video_p() {
	return;
    ?>
    <div id='wpbc_dashboard_section_video_p' class="wpbc_dashboard_section bk_right">
		<?php  wpbc_is_dismissed( 'wpbc_dashboard_section_video_p' );        //FixIn: 8.1.3.10 ?>
        <span class="bk_header"><?php esc_html_e('Video guide' ,'booking'); ?> (premium):</span>
		<?php // Premium ?>
		<div style="text-align: center;margin:10px 0;"><iframe style="width:90%;height:auto;" src="https://www.youtube.com/embed/videoseries?list=PLabuVtqCh9dyc_EO8L_1FKJyLpBuIv21_&amp;rel=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe></div>
    </div>
    <?php
}

/** Dashboard Support Section */
function wpbc_dashboard_section_support() {
    ?>
    <div id="wpbc_dashboard_section_support" class="wpbc_dashboard_section bk_right">
        <span class="bk_header"><?php esc_html_e('Support' ,'booking'); ?>:</span>
		<?php  wpbc_is_dismissed( 'wpbc_dashboard_section_support', array( 'css' => 'padding: 0 20px;' ) );        //FixIn: 8.1.3.10  ?>
		<?php /* ?>
		<?php // Free ?>
		<div style="text-align: center;margin:10px 0;"><iframe style="width:90%;height:auto;" src="https://www.youtube.com/embed/videoseries?list=PLabuVtqCh9dwLA5cpz1p2RrZOitLuVupR&amp;start=28&amp;rel=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe></div>
		<?php // Premium ?>
		<div style="text-align: center;margin:10px 0;"><iframe style="width:90%;height:auto;" src="https://www.youtube.com/embed/videoseries?list=PLabuVtqCh9dyc_EO8L_1FKJyLpBuIv21_&amp;rel=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe></div>
		<?php */ ?>
        <table class="bk_table">
            <tr class="first">
                <td style="text-align:center;" class="bk_spec_font"><a href="<?php echo 'https://wpbookingcalendar.com/faq/#using'; //echo esc_url( admin_url( add_query_arg( array( 'page' => 'wpbc-getting-started' ), 'index.php' ) ) ); ?>"
                    ><?php esc_html_e('Getting Started' ,'booking'); ?></a>
                </td>
            </tr>
            <tr>
                <td style="text-align:center;" class="bk_spec_font"><a target="_blank" href="https://wpbookingcalendar.com/wn/"><?php esc_html_e('What\'s New' ,'booking'); ?></a></td>
            </tr>
			<?php if ( class_exists('wpdev_bk_personal') ){ ?>
            <tr>
                <td style="text-align:center;" class="bk_spec_font"><a target="_blank" href="https://wpbookingcalendar.com/request-update/"><?php esc_html_e('Request Update' ,'booking'); ?></a></td>
            </tr>
			<?php } ?>
            <tr>
                <td style="text-align:center;" class="bk_spec_font"><a target="_blank" href="https://wpbookingcalendar.com/faq/"><?php esc_html_e('FAQ' ,'booking'); ?></a></td>
            </tr>
            <tr>
                <td style="text-align:center;" class="bk_spec_font"><a href="mailto:[email protected]"><?php esc_html_e('Contact email' ,'booking'); ?></a></td>
            </tr>                                        
            <tr>
                <td style="text-align:center;" class="bk_spec_font"><a target="_blank" href="https://wordpress.org/plugins/booking/"><?php esc_html_e('Rate plugin (thanks:)' ,'booking'); ?></a></td>
            </tr>
        </table>
    </div>
    <?php 
}


/** Dashboard News Section */
function wpbc_dashboard_section_news() {

    ?><div id="wpbc_dashboard_section_news"><?php

		wp_nonce_field( 'wpbc_ajax_admin_nonce', "wpbc_admin_panel_nonce_dashboard", true, true );      // Nonce for Ajax

		?>
		<div style="width:95%;border:none;clear:both;margin:10px 6px;" id="bk_news_section">
			<div style="width: 99%;margin-right:0;" >
				<span class="bk_header" style="padding: 0;">Booking Calendar News:</span><?php

				$is_panel_visible = wpbc_is_dismissed( 'wpbc_dashboard_section_news' );        // FixIn: 10.10.3.1.
				if ( $is_panel_visible ) {
					?><br/><br/>
					<div id="bk_news" class="rssSummary"> <span style="font-size:13px;text-align:center;">Loading...</span></div>
					<div id="ajax_bk_respond" class="rssSummary" style="display:none;"></div>
					<script type="text/javascript">
						jQuery.ajax({
							url: '<?php echo esc_url( admin_url( 'admin-ajax.php' ) ); ?>',
							type:'POST',
							success: function (data, textStatus){ if( textStatus == 'success' ) jQuery('#ajax_bk_respond').html( data ); },
							error: function (XMLHttpRequest, textStatus, errorThrown){ window.status = 'Ajax sending Error status:' + textStatus; },
							data:{
								action: 'CHECK_BK_NEWS',
								wpbc_nonce: document.getElementById('wpbc_admin_panel_nonce_dashboard').value
							}
						});
					</script>
				<?php } ?>
			</div>
		</div>

	</div>
		<?php
}


	function wpbc_dashboard_info_get_version_type(){
		$version = 'free';
		$version = wpbc_get_plugin_version_type();
		if ( wpbc_is_this_demo() ) {
			$version = 'free';
		}
		return $version;
	}

	function wpbc_dashboard_info_get_version_type_readable() {

		$ver = wpbc_get_plugin_version_type();
		if ( class_exists( 'wpdev_bk_multiuser' ) ) {
			$ver = 'multiUser';
		}
		$ver = str_replace( '_m', ' Medium', $ver );
		$ver = str_replace( '_l', ' Large', $ver );
		$ver = str_replace( '_s', ' Small', $ver );
		$ver = str_replace( 'biz', 'Business', $ver );
		$ver = ucwords( $ver );
		return  $ver;
	}

	function wpbc_dashboard_info_get_version_type_sites() {

		$json_version = get_json_property_from_meta( 'max usage' );
		if ( ! empty( $json_version ) ) {
			// $json_edition = get_json_property_from_meta( 'edition' ); if ( ! empty( $json_edition ) ) { $json_version = $json_version . ' | ' . $json_edition; }
			return $json_version;
		}

		$v_type = '';
		if ( false !== strpos( strtolower( WPDEV_BK_VERSION ), 'multisite' ) ) {
			$v_type = '5';
		} else if ( false !== strpos( strtolower( WPDEV_BK_VERSION ), 'develop' ) ) {
			$v_type = '2';
		}

		if ( ! empty( $v_type ) ) {
			return ' ' . $v_type . ' ' . __( 'websites', 'booking' );
		} else {
			return ' 1' . ' ' . __( 'website', 'booking' );
		}
	}

	function wpbc_dashboard_info_get_version_number() {

		if ( substr( WPDEV_BK_VERSION, 0, 3 ) == '11.' ) {

			$show_version = substr( WPDEV_BK_VERSION, 3 );

			if ( substr( $show_version, ( - 1 * ( strlen( WP_BK_VERSION_NUM ) ) ) ) === WP_BK_VERSION_NUM ) {
				$show_version = substr( $show_version, 0, ( - 1 * ( strlen( WP_BK_VERSION_NUM ) ) - 1 ) );
				$show_version = str_replace( '.', ' ', $show_version ) . " <sup><strong style='font-size:12px;'>" . esc_attr( WP_BK_VERSION_NUM ) . "</strong></sup>";
			}
			return $show_version;
		} else {
			return WPDEV_BK_VERSION;
		}
	}


/** Dashboard Version Section */
function wpbc_dashboard_section_version() {


    $version = wpbc_dashboard_info_get_version_type();

    /*

    Disbale hidded notice about Upgrade to  higher version in paid versions
    // FixIn: 8.0.1.6.
    if ( ( $version !== 'free' ) && ( class_exists('wpdev_bk_multiuser') === false ) ) { ?>
        <div class="wpbc_dashboard_section border_orrange" id="bk_upgrade_section"> 
            <div style="padding:0px 10px;width:96%;">
                <h4><?php esc_html_e('Upgrade to higher versions' , 'booking' ); ?>:</h4>
                <p>Check additional advanced functionality, which exist in higher versions and can be interesting for you <a href="https://wpbookingcalendar.com/features/" target="_blank">here &raquo;</a></p>
                <p><a class="button button-primary" style="margin-top: 10px;font-weight: 600;"  href="<?php echo wpbc_up_link(); ?>" target="_blank"><?php if ( wpbc_get_ver_sufix() == '' ) { esc_html_e('Purchase' ,'booking'); } else { esc_html_e('Upgrade Now' ,'booking'); } ?></a> </p>
            </div>
        </div>
        <div style="clear:both;"></div>
        <?php if ( wpbc_get_ver_sufix() != '' ) { ?>
            <script type="text/javascript">
                jQuery(document).ready(function(){
                    jQuery('#bk_upgrade_section').animate({opacity:1},7000).fadeOut(2000);
                });
            </script>
        <?php } ?>
    <?php } 
    */
    ?>
    <div id="wpbc_dashboard_section_current_version" class="wpbc_dashboard_section" >
        <span class="bk_header"><?php esc_html_e('Current version' ,'booking'); ?>:</span>
        <table class="bk_table">
			<?php if ( wpbc_is_this_demo() ) { ?>
            <tr class="first">
				<td></td>
                <td style="font-weight: 600; text-align: left;"><?php esc_html_e('Demo' ,'booking'); ?></td>
            </tr>
			<?php } ?>
            <tr class="first">
                <td style="width:35%;text-align: right;;" class=""><?php esc_html_e('Version' ,'booking'); ?>:</td>
                <td style="color: #e50;font-size: 13px;font-weight: 600;text-align: left;text-shadow: 0 -1px 0 #eee;;" 
                    class="bk_spec_font"><?php 
					// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
                    echo wpbc_dashboard_info_get_version_number();

                ?></td>
            </tr>
            <?php if ($version != 'free') { ?>
            <tr>
                <td style="width:35%;text-align: right;" class="first b"><?php esc_html_e('Type' ,'booking'); ?>:</td>
                <td style="text-align: left;  font-weight: 600;" class="bk_spec_font"><?php
					// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
	                echo wpbc_dashboard_info_get_version_type_readable();
			?></td>
            </tr>
            <tr>
                <td style="width:35%;text-align: right;" class="first b"><?php esc_html_e('Used for' ,'booking'); ?>:</td>
                <td style="text-align: left;  font-weight: 600;" class="bk_spec_font"><?php
						// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
                       echo wpbc_dashboard_info_get_version_type_sites();
                ?></td>
            </tr>
            <?php } ?>
            <tr>
                <td style="width:35%;text-align: right;" class="first b"><?php esc_html_e('Release date' ,'booking'); ?>:</td>
                <td style="text-align: left;  font-weight: 600;" class="bk_spec_font"><?php
					// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
					echo wpbc_date_localized( gmdate( 'Y-m-d', filemtime( WPBC_FILE ) ) );
				?></td>
            </tr>
        </table>
		<div id="wpbc_dashboard_section_current_version_upgrade">

			<table class="bk_table" style="border:none;">
				<tr>
					<td colspan="2" style="border:none;text-align:center;" class=""><?php
						?><?php  wpbc_is_dismissed( 'wpbc_dashboard_section_current_version_upgrade' , array( 'css' => 'padding: 0 0px;' ) );        //FixIn: 8.1.3.10  ?><?php
						if ($version == 'free') {
							?><a class="button-primary button" style="font-weight:600;" target="_blank" href="https://wpbookingcalendar.com/features/"><?php esc_html_e('Check Premium Features' ,'booking'); ?></a><?php
						} elseif  ( wpbc_get_ver_sufix() != '' )  {
							?><a class="button-primary button"  href="<?php echo esc_url( wpbc_get_settings_url() . '&tab=upgrade' ); ?>"><?php esc_html_e('Upgrade' ,'booking'); ?></a><?php
						} else {
							?><a class="button-primary button" target="_blank" href="https://wpbookingcalendar.com/features/"><?php esc_html_e('Explore Premium Features' ,'booking'); ?></a><?php
						}
				  ?></td>
				</tr>
			</table>
		</div>
    </div>
    
    <?php 
}


/** Dashboard Statistic Section */
function wpbc_dashboard_section_statistic( $counter ) {
	// FixIn: 9.3.1.7.
    $bk_admin_url = wpbc_get_bookings_url() . '&wh_approved=';
    ?>
	<div id='wpbc_dashboard_section_statistic'>
		<?php
		$is_panel_visible = wpbc_is_dismissed( 'wpbc_dashboard_section_statistic' );        // FixIn: 9.9.0.8.
		if ( $is_panel_visible ) {
		?>
		<div class="wpbc_dashboard_section bk_right">
			<span class="bk_header"><?php esc_html_e('Statistic' ,'booking'); ?>:</span>
			<table class="bk_table">
				<tr>
					<td class="first"> <a href="<?php echo esc_url( $bk_admin_url.'&wh_trash=0&wh_booking_date[]=1&tab=vm_booking_listing&overwrite=1' ); ?>"><span><?php echo esc_html( $counter['booking_today'] ); ?></span></a> </td>
					<td class="actual-bookings"> <a href="<?php echo esc_url( $bk_admin_url.'&wh_trash=0&wh_booking_date[]=1&tab=vm_booking_listing&overwrite=1' ); ?>" class=""><?php esc_html_e('Bookings for today' ,'booking'); ?></a> </td>
				</tr>
				<tr class="first">
					<td class="first"> <a href="<?php echo esc_url( $bk_admin_url.'&wh_trash=0&wh_modification_date[]=1&wh_booking_date[]=3&tab=vm_booking_listing&overwrite=1' ); ?>"><span><?php echo esc_html( $counter['was_made_today'] ); ?></span></a> </td>
					<td class="new-bookings"><a href="<?php echo esc_url( $bk_admin_url.'&wh_trash=0&wh_modification_date[]=1&wh_booking_date[]=3&tab=vm_booking_listing&overwrite=1' ); ?>" class=""><?php esc_html_e('New booking(s) made today' ,'booking'); ?></a> </td>
				</tr>
				<tr class="first">
					<td class="first"> <a href="<?php echo esc_url( $bk_admin_url.'&wh_what_bookings=new&wh_trash=0&wh_booking_date[]=3&tab=vm_booking_listing&overwrite=1' ); ?>"><span class=""><?php echo esc_html( $counter['new'] ); ?></span></a> </td>
					<td class=""> <a href="<?php echo esc_url( $bk_admin_url.'&wh_what_bookings=new&wh_trash=0&wh_booking_date[]=3&tab=vm_booking_listing&overwrite=1' ); ?>"><?php esc_html_e('New (unverified) booking(s)' ,'booking'); ?></a></td>
				</tr>
				<tr>
					<td class="first"> <a href="<?php echo esc_url( $bk_admin_url.'&wh_approved=0&wh_trash=0&wh_booking_date[]=3&tab=vm_booking_listing&overwrite=1' ); ?>"><span class=""><?php echo esc_html( $counter['pending'] ); ?></span></a></td>
					<td class="pending"><a href="<?php echo esc_url( $bk_admin_url.'&wh_approved=0&wh_trash=0&wh_booking_date[]=3&tab=vm_booking_listing&overwrite=1' ); ?>" class=""><?php esc_html_e('Pending booking(s)' ,'booking'); ?></a></td>
				</tr>
			</table>
		</div>
		<div class="wpbc_dashboard_section" >
			<span class="bk_header"><?php esc_html_e('Agenda' ,'booking'); ?>:</span>
			<table class="bk_table">
				<tr>
					<td class="first"> <a href="<?php echo esc_url( $bk_admin_url.'&wh_trash=0&wh_booking_date[]=10&tab=vm_booking_listing&overwrite=1' ); ?>"><span class=""><?php echo esc_html( $counter['check_in_today'] ); ?></span></a></td>
					<td class="pending"><a href="<?php echo esc_url( $bk_admin_url.'&wh_trash=0&wh_booking_date[]=10&tab=vm_booking_listing&overwrite=1' ); ?>" class=""><?php esc_html_e('Check in - Today', 'booking'); ?></a></td>
				</tr>
				<tr>
					<td class="first"> <a href="<?php echo esc_url( $bk_admin_url.'&wh_trash=0&wh_booking_date[]=11&tab=vm_booking_listing&overwrite=1' ); ?>"><span class=""><?php echo esc_html( $counter['check_out_today'] ); ?></span></a></td>
					<td class=""><a href="<?php echo esc_url( $bk_admin_url.'&wh_trash=0&wh_booking_date[]=11&tab=vm_booking_listing&overwrite=1' ); ?>" class=""><?php esc_html_e('Check out - Today', 'booking'); ?></a></td>
				</tr>
				<tr>
					<td class="first"> <a href="<?php echo esc_url( $bk_admin_url.'&wh_trash=0&wh_booking_date[]=7&tab=vm_booking_listing&overwrite=1' ); ?>"><span class=""><?php echo esc_html( $counter['check_in_tomorrow'] ); ?></span></a></td>
					<td class="new-bookings"><a href="<?php echo esc_url( $bk_admin_url.'&wh_trash=0&wh_booking_date[]=7&tab=vm_booking_listing&overwrite=1' ); ?>" class=""><?php esc_html_e('Check in - Tomorrow', 'booking'); ?></a></td>
				</tr>
				<tr>
					<td class="first"> <a href="<?php echo esc_url( $bk_admin_url.'&wh_trash=0&wh_booking_date[]=8&tab=vm_booking_listing&overwrite=1' ); ?>"><span class=""><?php echo esc_html( $counter['check_out_tomorrow'] ); ?></span></a></td>
					<td class="actual-bookings"><a href="<?php echo esc_url( $bk_admin_url.'&wh_trash=0&wh_booking_date[]=8&tab=vm_booking_listing&overwrite=1' ); ?>" class=""><?php esc_html_e('Check out - Tomorrow', 'booking'); ?></a></td>
				</tr>

			</table>
		</div>
		<?php } ?>
	</div>
    <?php
}


// ---------------------------------------------------------------------------------------------------------------------
// 9.8
// ---------------------------------------------------------------------------------------------------------------------

/** Get Flex Dashboard  */
function wpbc_get_flex_dashboard_info() {

    ob_start();

    wpbc_flex_dashboard_show();

    return ob_get_clean();
}


/** Show Flex Dashboard Conatiner  */
function wpbc_flex_dashboard_show(){

	if (
		   ( ! empty( $GLOBALS['pagenow'] ) )
		&& ( is_admin() )
		&& (
			   (   'index.php' === $GLOBALS['pagenow'] )
			|| (
					( 'admin.php' === $GLOBALS['pagenow'] )
				 && ( ! empty( $_GET['page'] ) )  // phpcs:ignore WordPress.Security.NonceVerification.Recommended
				 && ( 'wpbc-settings' === $_GET['page'] )  // phpcs:ignore WordPress.Security.NonceVerification.Recommended
				 && ( ( ! isset( $_GET['tab'] ) ) || ( 'general' === $_GET['tab'] ) )  // phpcs:ignore WordPress.Security.NonceVerification.Recommended
			   )
		   )
	) {

	} else {
		return;
	}


	$is_panel_visible = wpbc_is_dismissed_panel_visible( 'wpbc_dashboard_section_statistic' );        // FixIn: 9.9.0.8.

	$counter = ( $is_panel_visible ) ? wpbc_db_dashboard_get_bookings_count_arr() : array();

    wpbc_flex_dashboard_widget_css();

   ?><div class="wpbc_flex_dashboard_container" ><?php

       wpbc_flex_dashboard_section_statistic( $counter );

	?></div><?php

}


	/**
	 * CSS  for Flex Dashboard
	 * @return void
	 */
	function wpbc_flex_dashboard_widget_css(){

	    ?><style type="text/css">
			.wpbc_flex_dashboard_container{
				display: flex;
				flex-flow: row wrap;
				justify-content: space-between;
				align-items: center;
			}
			.wpbc_flex_dashboard_container .wpbc_flex_dashboard_item{
				flex: 1 1 auto;
				display: flex;
				flex-flow: row wrap;
				justify-content: center;
				align-items: center;
				margin: 0 10px;
				line-height: 2.1em;
			}
			.wpbc_flex_dashboard_container .wpbc_flex_dashboard_item:first-child{
				margin-left: 0;
			}
			.wpbc_flex_dashboard_container .wpbc_flex_dashboard_item:last-child{
				margin-right:0;
				justify-content: flex-end;
			}
			.wpbc_flex_dashboard_container .wpbc_flex_dashboard_item .wpbc_flex_dashboard_item_number,
			.wpbc_flex_dashboard_container .wpbc_flex_dashboard_item .wpbc_flex_dashboard_item_text{
				flex: 0 1 auto;
				padding: 0 5px;
			}
			.wpbc_flex_dashboard_container .wpbc_flex_dashboard_item .wpbc_flex_dashboard_item_number a,
			.wpbc_flex_dashboard_container .wpbc_flex_dashboard_item .wpbc_flex_dashboard_item_text a{
				text-decoration: none;
				outline:0;
			}
			.wpbc_flex_dashboard_container .wpbc_flex_dashboard_item .wpbc_flex_dashboard_item_number span{
				font-size: 18px;
  				font-family: Georgia,"Times New Roman","Bitstream Charter",Times,serif;
			}
			/* Colors */
			.wpbc_flex_dashboard_container .wpbc_flex_dashboard_item .wpbc_flex_dashboard_item_text_new *{
				/*color: #135e96;*/
			}
			.wpbc_flex_dashboard_container .wpbc_flex_dashboard_item .wpbc_flex_dashboard_item_text_pending *{
				color: #E66F00;
			}
			.wpbc_flex_dashboard_container .wpbc_flex_dashboard_item .wpbc_flex_dashboard_item_text_was_made_today *{
				color: red;
			}
			.wpbc_flex_dashboard_container .wpbc_flex_dashboard_item .wpbc_flex_dashboard_item_text_made_for_today *{
				color: green;
			}
			.wpbc_flex_dashboard_container .wpbc_flex_dashboard_item .wpbc_flex_dashboard_item_number.wpbc_flex_dashboard_item_version_number * {
				color: #2b6900;
				color: #7812bd;
  				font-size: 11px;
				text-shadow: none;
			}
			.wpbc_flex_dashboard_container .wpbc_flex_dashboard_item .wpbc_flex_dashboard_item_version_type * {
				color: #8f8f8f;
				font-size: 9px;
				text-shadow: none;
			}
		</style><?php
	}


	/**
	 * Flex Dashboard Items
	 *
	 * @param $counter
	 *
	 * @return void
	 */
	function wpbc_flex_dashboard_section_statistic( $counter ){

		$bk_admin_url = wpbc_get_bookings_url();// . '&wh_approved=';

		if ( ! empty( $counter ) ) {

			// Was made today -----------------------------------------------------------------------------------------------------
			?>
			<div class="wpbc_flex_dashboard_item">
				<div class="wpbc_flex_dashboard_item_number">
					<a href="<?php echo esc_url( $bk_admin_url.'&wh_trash=0&wh_modification_date[]=1&wh_booking_date[]=3&tab=vm_booking_listing&overwrite=1' ); ?>">
						<span><?php echo esc_html( $counter['was_made_today'] ); ?></span>
					</a>
				</div>
				<div class="wpbc_flex_dashboard_item_text wpbc_flex_dashboard_item_text_was_made_today">
					<a href="<?php echo esc_url( $bk_admin_url.'&wh_trash=0&wh_modification_date[]=1&wh_booking_date[]=3&tab=vm_booking_listing&overwrite=1' ); ?>" class="">
						<?php esc_html_e('New booking(s) made today' ,'booking');?>
					</a>
				</div>
			</div>
			<?php

			// For today ---------------------------------------------------------------------------------------------------
			?>
			<div class="wpbc_flex_dashboard_item">
				<div class="wpbc_flex_dashboard_item_number">
					<a href="<?php echo esc_url( $bk_admin_url.'&wh_trash=0&wh_booking_date[]=1&tab=vm_booking_listing&overwrite=1' ); ?>">
						<span><?php echo esc_html( $counter['booking_today'] ); ?></span>
					</a>
				</div>
				<div class="wpbc_flex_dashboard_item_text wpbc_flex_dashboard_item_text_made_for_today">
					<a href="<?php echo esc_url( $bk_admin_url.'&wh_trash=0&wh_booking_date[]=1&tab=vm_booking_listing&overwrite=1' ); ?>" class="">
						<?php esc_html_e('Booking(s) for today' ,'booking');?>
					</a>
				</div>
			</div>
			<?php

			// Pending -----------------------------------------------------------------------------------------------------
			?>
			<div class="wpbc_flex_dashboard_item">
				<div class="wpbc_flex_dashboard_item_number">
					<a href="<?php echo esc_url( $bk_admin_url.'&wh_approved=0&wh_trash=0&wh_booking_date[]=3&tab=vm_booking_listing&overwrite=1' ); ?>">
						<span class=""><?php echo esc_html( $counter['pending'] ); ?></span>
					</a>
				</div>
				<div class="wpbc_flex_dashboard_item_text wpbc_flex_dashboard_item_text_pending">
					<a href="<?php echo esc_url( $bk_admin_url.'&wh_approved=0&wh_trash=0&wh_booking_date[]=3&tab=vm_booking_listing&overwrite=1' ); ?>" class="">
						<?php esc_html_e('Pending booking(s)' ,'booking');?>
					</a>
				</div>
			</div>
			<?php


			// New ---------------------------------------------------------------------------------------------------------
			?>
			<div class="wpbc_flex_dashboard_item">
				<div class="wpbc_flex_dashboard_item_number">
					<a href="<?php echo esc_url( $bk_admin_url.'&wh_what_bookings=new&wh_trash=0&wh_booking_date[]=3&tab=vm_booking_listing&overwrite=1' ); ?>">
						<span class=""><?php echo esc_html( $counter['new'] ); ?></span>
					</a>
				</div>
				<div class="wpbc_flex_dashboard_item_text wpbc_flex_dashboard_item_text_new">
					<a href="<?php echo esc_url( $bk_admin_url. '&wh_what_bookings=new&wh_trash=0&wh_booking_date[]=3&tab=vm_booking_listing&overwrite=1' ); ?>"> <?php esc_html_e( 'New (unverified) booking(s)', 'booking' ); ?>
					</a>
				</div>
			</div>
			<?php
		}

		// Version ---------------------------------------------------------------------------------------------------------
		?>
		<div class="wpbc_flex_dashboard_item">
			<div class="wpbc_flex_dashboard_item_text wpbc_flex_dashboard_item_version_type">
				<a href="https://wpbookingcalendar.com/faq/difference-single-developer-multi-site/#<?php
				// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
				echo esc_attr( wpbc_get_slug_format( trim( wpbc_dashboard_info_get_version_type_readable() . '_' . wpbc_dashboard_info_get_version_type_sites() . '_' . WP_BK_VERSION_NUM ) ) ); ?>">
				<?php
					if ( class_exists( 'wpdev_bk_personal' ) ) {
						// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
						echo wpbc_dashboard_info_get_version_type_readable();
					}
					if ( wpbc_is_this_demo() ) {
						echo ' (Demo)';
					} else {
						if ( 'free' != wpbc_dashboard_info_get_version_type() ) {
							// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
							echo ' (' . __( 'for', 'booking' ) . ' ' . trim( wpbc_dashboard_info_get_version_type_sites() ) . ')';
						}
					}
				?>
				</a>
			</div>
			<div class="wpbc_flex_dashboard_item_number wpbc_flex_dashboard_item_version_number">
				<a href="https://wpbookingcalendar.com/changelog/#<?php
				// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
				echo  wpbc_get_slug_format( trim( wpbc_dashboard_info_get_version_type_readable() . '_' . wpbc_dashboard_info_get_version_type_sites() .  '_' . WP_BK_VERSION_NUM ) ); ?>">
					<span class=""><?php echo esc_attr(WP_BK_VERSION_NUM); ?></span>
				</a>
			</div>
		</div>
		<?php

	}

Filemanager

Name Type Size Permission Actions
api-settings.php File 143.4 KB 0640
index.php File 27 B 0640
page-email-approved.php File 63.38 KB 0640
page-email-deleted.php File 61.09 KB 0640
page-email-deny.php File 62.29 KB 0640
page-email-new-admin.php File 63.39 KB 0640
page-email-new-visitor.php File 61.07 KB 0640
page-email-trash.php File 61.73 KB 0640
page-ics-export.php File 22.75 KB 0640
page-ics-general.php File 31.6 KB 0640
page-ics-import.php File 38.09 KB 0640
page-import-gcal.php File 52.19 KB 0640
page-new.php File 8.1 KB 0640
page-settings.php File 59.89 KB 0640
page-timeline.php File 6.41 KB 0640
page-up.php File 2.83 KB 0640
wpbc-dashboard.php File 38.09 KB 0640
wpbc-gutenberg.php File 1.15 KB 0640
wpbc-settings-functions.php File 19.93 KB 0640
wpbc-sql.php File 71.37 KB 0640
wpbc-toolbars.php File 95.34 KB 0640
Filemanager