/**
* Shortcode: [mccia_hall_booking hall_id="3"]
* Paste this entire code block into your theme's functions.php or a small plugin file.
* Renders a self-contained Hall Booking UI modelled on:
* https://www.mcciapune.com/hallbookings/hall-booking-page/?hall_id=3
*/
add_shortcode('mccia_hall_booking', function($atts) {
$atts = shortcode_atts(array(
'hall_id' => '3',
), $atts, 'mccia_hall_booking');
// Hall data (mirrors the referenced page for hall_id=3 - Pudumjee Hall (A/c))
$hall = array(
'id' => intval($atts['hall_id']),
'title' => 'Pudumjee Hall (A/c)',
'type' => 'Theatre',
'capacity' => 150,
'location' => 'Tilak Road',
'included' => array('Podium','Projector','PA-System','Dies','WhiteBoard'),
// rental rates taken from the reference page
'rates' => array(
'member' => array('2' => 3350, '4' => 5350, '8' => 10650, 'extra_hr' => 1800),
'non_member' => array('2' => 3800, '4' => 6100, '8' => 12550, 'extra_hr' => 2050),
),
'gst_percent' => 18,
'security_deposit' => 5000,
'contact' => array(
'name' => 'MAHRATTA CHAMBER OF COMMERCE, INDUSTRIES AND AGRICULTURE',
'address' => '5TH FLOOR, 505/506 A/B WING, MCCIA TRADE TOWER, 403 - A, SENAPATI BAPAT ROAD, PUNE, Maharashtra, 411016',
'phone' => '+91 20 2570 9000',
'email' => 'info@mcciapune.com',
),
);
// Begin output buffering
ob_start();
?>
Type: •
Capacity: •
Location:
Included facilities
Rental (select duration)
| Duration | Member | Non Member |
|---|---|---|
| 2 Hrs | ₹ | ₹ |
| 4 Hrs | ₹ | ₹ |
| 8 Hrs | ₹ | ₹ |
| Extra Hour (beyond selected) | ₹ / hr | ₹ / hr |
Booking
Booking charges summary will appear here after calculation.
Booking Charges
Hall
Base charge₹ 0
GST/IGST (%)₹ 0
Additional services₹ 0
Security deposit₹
Total payable amount₹ 0
Kindly issue a separate cheque of ₹ in the name of MCCIA towards security deposit.
Copyright © MCCIA 2023. All rights reserved.



