Element_OphTrOperationbooking_ScheduleOperation::getCurrentBooking PHP Method

getCurrentBooking() public method

Get the operation booking for the event.
public getCurrentBooking ( ) : OphTrOperationbooking_Operation_Booking
return OphTrOperationbooking_Operation_Booking
    public function getCurrentBooking()
    {
        if ($this->event_id && ($op = Element_OphTrOperationbooking_Operation::model()->with('booking')->find('event_id = ?', array($this->event_id)))) {
            return $op->booking;
        }
    }