????

Your IP : 216.73.216.188


Current Path : /home/degesdxb/www/wp-content/plugins/motopress-hotel-booking/includes/
Upload File :
Current File : //home/degesdxb/www/wp-content/plugins/motopress-hotel-booking/includes/calendar-feed.php

<?php

namespace MPHB;

class CalendarFeed {

	public function __construct() {
		add_action( 'init', array( $this, 'setUpFeed' ) );
	}

	public function setUpFeed() {
		add_feed( 'mphb.ics', array( $this, 'exportIcs' ) );
	}

	public function exportIcs() {
		if ( ! isset( $_GET['accommodation_id'] ) ) {
			return;
		}

		$roomId   = absint( $_GET['accommodation_id'] );
		$exporter = new \MPHB\iCal\Exporter();
		$exporter->export( $roomId );
	}
}