├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── musi_ticket.md └── workflows │ ├── erpnext.yml │ ├── moodle-plugin-ci.yml │ └── moodle-release.yml ├── .gitignore ├── CHANGES.md ├── README.md ├── amd ├── build │ ├── app-lazy.min.js │ ├── app-lazy.min.js.map │ ├── bookingcompetencies.min.js │ ├── bookingcompetencies.min.js.map │ ├── bookinginstancetemplateselect.min.js │ ├── bookinginstancetemplateselect.min.js.map │ ├── bookingjslib.min.js │ ├── bookingjslib.min.js.map │ ├── bookingpage │ │ ├── prepageFooter.min.js │ │ └── prepageFooter.min.js.map │ ├── bookit.min.js │ ├── bookit.min.js.map │ ├── button_notifyme.min.js │ ├── button_notifyme.min.js.map │ ├── condition │ │ ├── bookingPolicy.min.js │ │ ├── bookingPolicy.min.js.map │ │ ├── customForm.min.js │ │ ├── customForm.min.js.map │ │ ├── subbookingAdditionalPerson.min.js │ │ └── subbookingAdditionalPerson.min.js.map │ ├── confirm_cancel.min.js │ ├── confirm_cancel.min.js.map │ ├── csvimport.min.js │ ├── csvimport.min.js.map │ ├── dynamicactionsform.min.js │ ├── dynamicactionsform.min.js.map │ ├── dynamiccampaignsform.min.js │ ├── dynamiccampaignsform.min.js.map │ ├── dynamicchangesemesterform.min.js │ ├── dynamicchangesemesterform.min.js.map │ ├── dynamicdeputymodal.min.js │ ├── dynamicdeputymodal.min.js.map │ ├── dynamiceditoptionform.min.js │ ├── dynamiceditoptionform.min.js.map │ ├── dynamicholidaysform.min.js │ ├── dynamicholidaysform.min.js.map │ ├── dynamicoptiondateform.min.js │ ├── dynamicoptiondateform.min.js.map │ ├── dynamicpricecategoriesform.min.js │ ├── dynamicpricecategoriesform.min.js.map │ ├── dynamicrulesform.min.js │ ├── dynamicrulesform.min.js.map │ ├── dynamicsemestersform.min.js │ ├── dynamicsemestersform.min.js.map │ ├── dynamicsubbookingsform.min.js │ ├── dynamicsubbookingsform.min.js.map │ ├── edit-teacher-description.min.js │ ├── edit-teacher-description.min.js.map │ ├── edit_note.min.js │ ├── edit_note.min.js.map │ ├── editteachersforoptiondate_form.min.js │ ├── editteachersforoptiondate_form.min.js.map │ ├── elective-sorting.min.js │ ├── elective-sorting.min.js.map │ ├── form_booking_options_selector.min.js │ ├── form_booking_options_selector.min.js.map │ ├── form_courses_selector.min.js │ ├── form_courses_selector.min.js.map │ ├── form_teachers_selector.min.js │ ├── form_teachers_selector.min.js.map │ ├── form_templates_selector.min.js │ ├── form_templates_selector.min.js.map │ ├── form_users_selector.min.js │ ├── form_users_selector.min.js.map │ ├── init_comments.min.js │ ├── init_comments.min.js.map │ ├── jquery.barrating.min.js │ ├── jquery.barrating.min.js.map │ ├── modal_init.min.js │ ├── modal_init.min.js.map │ ├── notifications.min.js │ ├── notifications.min.js.map │ ├── signinsheetdownload.min.js │ ├── signinsheetdownload.min.js.map │ ├── view_actions.min.js │ ├── view_actions.min.js.map │ ├── wunderbyte.min.js │ └── wunderbyte.min.js.map └── src │ ├── app-lazy.js │ ├── app-lazy.js.LICENSE.txt │ ├── bookingcompetencies.js │ ├── bookinginstancetemplateselect.js │ ├── bookingjslib.js │ ├── bookingpage │ └── prepageFooter.js │ ├── bookit.js │ ├── button_notifyme.js │ ├── condition │ ├── bookingPolicy.js │ ├── customForm.js │ └── subbookingAdditionalPerson.js │ ├── confirm_cancel.js │ ├── csvimport.js │ ├── dynamicactionsform.js │ ├── dynamiccampaignsform.js │ ├── dynamicchangesemesterform.js │ ├── dynamicdeputymodal.js │ ├── dynamiceditoptionform.js │ ├── dynamicholidaysform.js │ ├── dynamicoptiondateform.js │ ├── dynamicpricecategoriesform.js │ ├── dynamicrulesform.js │ ├── dynamicsemestersform.js │ ├── dynamicsubbookingsform.js │ ├── edit-teacher-description.js │ ├── edit_note.js │ ├── editteachersforoptiondate_form.js │ ├── elective-sorting.js │ ├── form_booking_options_selector.js │ ├── form_courses_selector.js │ ├── form_teachers_selector.js │ ├── form_templates_selector.js │ ├── form_users_selector.js │ ├── init_comments.js │ ├── jquery.barrating.js │ ├── modal_init.js │ ├── notifications.js │ ├── signinsheetdownload.js │ ├── view_actions.js │ └── wunderbyte.js ├── backup └── moodle2 │ ├── backup_booking_activity_task.class.php │ ├── backup_booking_settingslib.php │ ├── backup_booking_stepslib.php │ ├── restore_booking_activity_task.class.php │ └── restore_booking_stepslib.php ├── bookingextension ├── README.md └── confirmation_trainer │ ├── LICENSE │ ├── README.md │ ├── classes │ ├── confirmation_trainer.php │ ├── local │ │ └── confirmbooking.php │ ├── observer.php │ └── option │ │ └── fields │ │ └── confirmation_trainer.php │ ├── db │ ├── events.php │ ├── install.php │ ├── services.php │ └── tasks.php │ ├── lang │ ├── de │ │ └── bookingextension_confirmation_trainer.php │ └── en │ │ └── bookingextension_confirmation_trainer.php │ ├── lib.php │ └── version.php ├── bookinginstancetemplatessettings.php ├── bookingredirect.php ├── categories.php ├── categoriesform.class.php ├── category.php ├── categoryadd.php ├── classes ├── GoogleUrlApi.php ├── all_userbookings.php ├── bo_actions │ ├── action_types │ │ ├── bookotheroptions.php │ │ ├── cancelbooking.php │ │ ├── executerestscript.php │ │ └── userprofilefield.php │ ├── actions_info.php │ └── booking_action.php ├── bo_availability │ ├── bo_condition.php │ ├── bo_info.php │ ├── bo_subcondition.php │ ├── bo_subinfo.php │ ├── conditions │ │ ├── allowedtobookininstance.php │ │ ├── alreadybooked.php │ │ ├── alreadyreserved.php │ │ ├── askforconfirmation.php │ │ ├── booking_time.php │ │ ├── bookingpolicy.php │ │ ├── bookitbutton.php │ │ ├── bookondetail.php │ │ ├── bookwithcredits.php │ │ ├── bookwithsubscription.php │ │ ├── campaign_blockbooking.php │ │ ├── cancelmyself.php │ │ ├── capbookingchoose.php │ │ ├── confirmaskforconfirmation.php │ │ ├── confirmation.php │ │ ├── confirmbookit.php │ │ ├── confirmbookwithcredits.php │ │ ├── confirmbookwithsubscription.php │ │ ├── confirmcancel.php │ │ ├── customform.php │ │ ├── electivebookitbutton.php │ │ ├── electivenotbookable.php │ │ ├── enrolledincohorts.php │ │ ├── enrolledincourse.php │ │ ├── fullybooked.php │ │ ├── hascompetency.php │ │ ├── instanceavailability.php │ │ ├── isbookable.php │ │ ├── isbookableinstance.php │ │ ├── iscancelled.php │ │ ├── isloggedin.php │ │ ├── isloggedinprice.php │ │ ├── max_number_of_bookings.php │ │ ├── maxoptionsfromcategory.php │ │ ├── nooverlapping.php │ │ ├── nooverlappingproxy.php │ │ ├── noshoppingcart.php │ │ ├── notifymelist.php │ │ ├── onwaitinglist.php │ │ ├── optionhasstarted.php │ │ ├── otheroptionsavailable.php │ │ ├── previouslybooked.php │ │ ├── priceisset.php │ │ ├── selectusers.php │ │ ├── subbooking.php │ │ ├── subbooking_blocks.php │ │ ├── userprofilefield_1_default.php │ │ └── userprofilefield_2_custom.php │ └── subconditions │ │ ├── alreadybooked.php │ │ ├── bookitbutton.php │ │ ├── isbookable.php │ │ └── priceisset.php ├── booking.php ├── booking_answers │ ├── booking_answers.php │ ├── scope_base.php │ ├── scope_base_answers.php │ ├── scope_base_options.php │ └── scopes │ │ ├── alloptions.php │ │ ├── course.php │ │ ├── courseanswers.php │ │ ├── instance.php │ │ ├── instanceanswers.php │ │ ├── option.php │ │ ├── optiondate.php │ │ ├── optionstoconfirm.php │ │ ├── optionstoconfirmreduced.php │ │ ├── supervisorteam.php │ │ ├── supervisorteamreduced.php │ │ ├── system.php │ │ └── systemanswers.php ├── booking_bookit.php ├── booking_campaigns │ ├── booking_campaign.php │ ├── campaigns │ │ ├── campaign_blockbooking.php │ │ └── campaign_customfield.php │ └── campaigns_info.php ├── booking_context_helper.php ├── booking_existing_user_selector.php ├── booking_option.php ├── booking_option_settings.php ├── booking_potential_user_selector.php ├── booking_rules │ ├── actions │ │ ├── confirm_bookinganswer.php │ │ ├── delete_conditions_from_bookinganswer.php │ │ ├── send_copy_of_mail.php │ │ ├── send_mail.php │ │ └── send_mail_interval.php │ ├── actions_info.php │ ├── booking_rule.php │ ├── booking_rule_action.php │ ├── booking_rule_condition.php │ ├── booking_rules.php │ ├── conditions │ │ ├── enter_userprofilefield.php │ │ ├── match_userprofilefield.php │ │ ├── select_deputy_of_supervisor.php │ │ ├── select_student_in_bo.php │ │ ├── select_teacher_in_bo.php │ │ ├── select_user_from_event.php │ │ ├── select_user_shopping_cart.php │ │ ├── select_users.php │ │ └── select_users_from_userfield_of_eventuser.php │ ├── conditions_info.php │ ├── rules │ │ ├── rule_daysbefore.php │ │ ├── rule_react_on_event.php │ │ └── templates │ │ │ ├── ruletemplate_bookingoption_booked.php │ │ │ ├── ruletemplate_bookingoptioncompleted.php │ │ │ ├── ruletemplate_bookingoptionuncompleted.php │ │ │ ├── ruletemplate_confirmwaitinglist.php │ │ │ ├── ruletemplate_courseupdate.php │ │ │ ├── ruletemplate_daysbeforestart.php │ │ │ ├── ruletemplate_optiondatesteacheradded.php │ │ │ ├── ruletemplate_optiondatesteacherdeleted.php │ │ │ ├── ruletemplate_paymentconfirmation.php │ │ │ ├── ruletemplate_sessionreminders.php │ │ │ ├── ruletemplate_trainercancellation.php │ │ │ ├── ruletemplate_trainerpoll.php │ │ │ ├── ruletemplate_trainerreminderbeforestart.php │ │ │ ├── ruletemplate_usercancellation.php │ │ │ ├── ruletemplate_userpoll.php │ │ │ └── ruletemplate_userstorno.php │ └── rules_info.php ├── booking_settings.php ├── booking_subbookit.php ├── booking_tags.php ├── booking_user_selector_base.php ├── booking_utils.php ├── bookinginstancetemplatessettings_table.php ├── calendar.php ├── checklist │ ├── checklist_generator.php │ └── checklist_pdf.php ├── completion │ └── custom_completion.php ├── coursecategories.php ├── customfield │ ├── booking_handler.php │ └── optiondate_cfields.php ├── dates.php ├── elective.php ├── enrollink.php ├── entities │ └── service_provider.php ├── event │ ├── booking_afteractionsfailed.php │ ├── booking_debug.php │ ├── booking_failed.php │ ├── booking_rulesexecutionfailes.php │ ├── bookinganswer_cancelled.php │ ├── bookinganswer_confirmed.php │ ├── bookinganswer_denied.php │ ├── bookinganswer_notesedited.php │ ├── bookinganswer_presencechanged.php │ ├── bookinganswer_waitingforconfirmation.php │ ├── bookinganswercustomformconditions_deleted.php │ ├── bookinginstance_updated.php │ ├── bookingoption_booked.php │ ├── bookingoption_bookedviaautoenrol.php │ ├── bookingoption_cancelled.php │ ├── bookingoption_completed.php │ ├── bookingoption_created.php │ ├── bookingoption_deleted.php │ ├── bookingoption_freetobookagain.php │ ├── bookingoption_uncompleted.php │ ├── bookingoption_updated.php │ ├── bookingoptiondate_created.php │ ├── bookingoptiondate_deleted.php │ ├── bookingoptionwaitinglist_booked.php │ ├── course_module_viewed.php │ ├── custom_bulk_message_sent.php │ ├── custom_field_changed.php │ ├── custom_message_sent.php │ ├── enrollink_triggered.php │ ├── message_sent.php │ ├── optiondates_teacher_added.php │ ├── optiondates_teacher_deleted.php │ ├── pricecategory_changed.php │ ├── records_imported.php │ ├── reminder1_sent.php │ ├── reminder2_sent.php │ ├── reminder_teacher_sent.php │ ├── report_viewed.php │ ├── rest_script_failed.php │ ├── rest_script_success.php │ ├── teacher_added.php │ └── teacher_removed.php ├── existing_subscriber_selector.php ├── external │ ├── addbookingoption.php │ ├── allow_add_item_to_cart.php │ ├── bookings.php │ ├── bookit.php │ ├── categories.php │ ├── get_booking_option_description.php │ ├── get_option_field_config.php │ ├── get_parent_categories.php │ ├── get_submission_mobile.php │ ├── init_comments.php │ ├── instancetemplate.php │ ├── load_pre_booking_page.php │ ├── optiontemplate.php │ ├── save_option_field_config.php │ ├── search_booking_options.php │ ├── search_courses.php │ ├── search_teachers.php │ ├── search_templates.php │ ├── search_users.php │ ├── set_checked_booking_instance.php │ ├── toggle_notify_user.php │ └── update_bookingnotes.php ├── form │ ├── actions │ │ ├── actionsform.php │ │ └── deleteactionsform.php │ ├── campaignsform.php │ ├── condition │ │ ├── bookingpolicy_form.php │ │ └── customform_form.php │ ├── confirmactivity.php │ ├── csvimport.php │ ├── customfield.php │ ├── deletecampaignform.php │ ├── deleteruleform.php │ ├── dynamicchangesemesterform.php │ ├── dynamicdeputyselect.php │ ├── dynamicholidaysform.php │ ├── dynamicoptiondateform.php │ ├── dynamicsemestersform.php │ ├── editteachersforoptiondate_form.php │ ├── importoptions_form.php │ ├── instancetemplateadd_form.php │ ├── modal_confirmcancel.php │ ├── modal_editteacherdescription.php │ ├── modaloptiondateform.php │ ├── option_form.php │ ├── option_form_bulk.php │ ├── optiondates │ │ ├── modal_change_notes.php │ │ └── modal_change_status.php │ ├── pricecategories_form.php │ ├── rulesform.php │ ├── send_mail_to_teachers.php │ ├── subbooking │ │ └── additionalperson_form.php │ ├── subbookingsdeleteform.php │ ├── subbookingsform.php │ ├── subscribe_cohort_or_group_form.php │ ├── subscribeusersactivity.php │ ├── teacher_performed_units_report_form.php │ └── teachers_instance_report_form.php ├── ical.php ├── import │ ├── README.md │ ├── csvcolumn.php │ ├── csvsettings.php │ └── fileparser.php ├── importer │ ├── bookingoptionsimporter.php │ └── demo.csv ├── local │ ├── bookingstracker │ │ └── bookingstracker_helper.php │ ├── checkanswers │ │ ├── actions │ │ │ └── deleteanswer.php │ │ ├── checkanswers.php │ │ └── checks │ │ │ ├── cmvisibility.php │ │ │ └── enrolledincourse.php │ ├── competencies │ │ └── competencies_handler.php │ ├── confirmationworkflow │ │ └── confirmation.php │ ├── connectedcourse.php │ ├── interfaces │ │ └── bookingextension │ │ │ └── confirmbooking_interface.php │ ├── mobile │ │ ├── customformstore.php │ │ └── mobileformbuilder.php │ ├── modechecker.php │ ├── optiondates │ │ └── optiondate_answer.php │ ├── override_user_field.md │ ├── override_user_field.php │ ├── pricecategories_handler.php │ ├── shortcode_filterfield.php │ └── templaterule.php ├── message_controller.php ├── mybookings_table.php ├── observer.php ├── option │ ├── dates_handler.php │ ├── field_base.php │ ├── fields.php │ ├── fields │ │ ├── actions.php │ │ ├── addastemplate.php │ │ ├── address.php │ │ ├── addtocalendar.php │ │ ├── addtogroup.php │ │ ├── aftercompletedtext.php │ │ ├── aftersubmitaction.php │ │ ├── annotation.php │ │ ├── applybookingrules.php │ │ ├── attachment.php │ │ ├── availability.php │ │ ├── beforebookedtext.php │ │ ├── beforecompletedtext.php │ │ ├── bookingclosingtime.php │ │ ├── bookingopeningtime.php │ │ ├── bookingoptionimage.php │ │ ├── bookusers.php │ │ ├── canceluntil.php │ │ ├── certificate.php │ │ ├── competencies.php │ │ ├── courseendtime.php │ │ ├── courseid.php │ │ ├── coursestarttime.php │ │ ├── credits.php │ │ ├── customfields.php │ │ ├── description.php │ │ ├── disablebookingusers.php │ │ ├── disablecancel.php │ │ ├── duplication.php │ │ ├── duration.php │ │ ├── easy_availability_previouslybooked.php │ │ ├── easy_availability_selectusers.php │ │ ├── easy_bookingclosingtime.php │ │ ├── easy_bookingopeningtime.php │ │ ├── easy_text.php │ │ ├── elective.php │ │ ├── enrolmentstatus.php │ │ ├── entities.php │ │ ├── eventslist.php │ │ ├── formconfig.php │ │ ├── howmanyusers.php │ │ ├── id.php │ │ ├── identifier.php │ │ ├── institution.php │ │ ├── invisible.php │ │ ├── json.php │ │ ├── location.php │ │ ├── maxanswers.php │ │ ├── maxoverbooking.php │ │ ├── minanswers.php │ │ ├── moveoption.php │ │ ├── multiplebookings.php │ │ ├── notificationtext.php │ │ ├── optiondates.php │ │ ├── pollurl.php │ │ ├── prepare_import.php │ │ ├── price.php │ │ ├── priceformulaadd.php │ │ ├── priceformulamultiply.php │ │ ├── priceformulaoff.php │ │ ├── recurringoptions.php │ │ ├── removeafterminutes.php │ │ ├── responsiblecontact.php │ │ ├── returnurl.php │ │ ├── sharedplaces.php │ │ ├── shoppingcart.php │ │ ├── subbookings.php │ │ ├── teachers.php │ │ ├── template.php │ │ ├── text.php │ │ ├── timecreated.php │ │ ├── timemodified.php │ │ ├── titleprefix.php │ │ └── waitforconfirmation.php │ ├── fields_info.php │ ├── optiondate.php │ └── time_handler.php ├── output │ ├── actionslist.php │ ├── booked_users.php │ ├── bookingoption_changes.php │ ├── bookingoption_dates.php │ ├── bookingoption_description.php │ ├── bookit_button.php │ ├── bookit_price.php │ ├── business_card.php │ ├── button_notifyme.php │ ├── campaignslist.php │ ├── col_action.php │ ├── col_availableplaces.php │ ├── col_coursestarttime.php │ ├── col_price.php │ ├── col_responsiblecontacts.php │ ├── col_teacher.php │ ├── col_text.php │ ├── col_text_with_description.php │ ├── coursepage_shortinfo_and_button.php │ ├── elective_modal.php │ ├── eventslist.php │ ├── instance_description.php │ ├── mobile.php │ ├── optiondates_only.php │ ├── optiondates_with_entities.php │ ├── page_allteachers.php │ ├── page_teacher.php │ ├── prepagemodal.php │ ├── pricecategories.php │ ├── renderer.php │ ├── report_edit_bookingnotes.php │ ├── ruleslist.php │ ├── semesters_holidays.php │ ├── signin_downloadform.php │ ├── subbooking_additionalitem_output.php │ ├── subbooking_additionalperson_output.php │ ├── subbooking_timeslot_output.php │ ├── subbookingslist.php │ └── view.php ├── placeholders │ ├── placeholders │ │ ├── address.php │ │ ├── bookedplaces.php │ │ ├── bookingconfirmationlink.php │ │ ├── bookingdetails.php │ │ ├── bookinglink.php │ │ ├── bookingoptiondetaillink.php │ │ ├── bookingreportlink.php │ │ ├── certificateurl.php │ │ ├── changes.php │ │ ├── coursecalendarurl.php │ │ ├── courselink.php │ │ ├── customfields.php │ │ ├── customform.php │ │ ├── dates.php │ │ ├── datesandentities.php │ │ ├── department.php │ │ ├── duedate.php │ │ ├── duration.php │ │ ├── email.php │ │ ├── enddate.php │ │ ├── endtime.php │ │ ├── enrollink.php │ │ ├── eventdescription.php │ │ ├── eventtype.php │ │ ├── firstname.php │ │ ├── firstnamerelated.php │ │ ├── gotobookingoption.php │ │ ├── installmentprice.php │ │ ├── instancename.php │ │ ├── institution.php │ │ ├── journal.php │ │ ├── lastname.php │ │ ├── lastnamerelated.php │ │ ├── location.php │ │ ├── numberofinstallment.php │ │ ├── numberparticipants.php │ │ ├── numberwaitinglist.php │ │ ├── optiondatefromevent.php │ │ ├── participant.php │ │ ├── pollstartdate.php │ │ ├── pollurl.php │ │ ├── pollurlteachers.php │ │ ├── price.php │ │ ├── profilepicture.php │ │ ├── qrenrollink.php │ │ ├── qrid.php │ │ ├── qrusername.php │ │ ├── restresponse.php │ │ ├── semester.php │ │ ├── shoppingcartplaceholder.php │ │ ├── startdate.php │ │ ├── starttime.php │ │ ├── status.php │ │ ├── teacher.php │ │ ├── teachers.php │ │ ├── title.php │ │ ├── usercalendarurl.php │ │ └── username.php │ └── placeholders_info.php ├── places.php ├── plugininfo │ ├── bookingextension.php │ └── bookingextension_interface.php ├── potential_subscriber_selector.php ├── price.php ├── privacy │ └── provider.php ├── semester.php ├── settings │ └── optionformconfig │ │ └── optionformconfig_info.php ├── shopping_cart │ └── service_provider.php ├── shortcodes.php ├── shortcodes_handler.php ├── signinsheet │ ├── signin_pdf.php │ └── signinsheet_generator.php ├── singleton_service.php ├── subbookings.php ├── subbookings │ ├── booking_subbooking.php │ ├── sb_types │ │ ├── subbooking_additionalitem.php │ │ ├── subbooking_additionalperson.php │ │ └── subbooking_timeslot.php │ ├── subbookings_cache.php │ └── subbookings_info.php ├── subscriber_selector_base.php ├── table │ ├── booking_history_table.php │ ├── bookingoptions_simple_table.php │ ├── bookingoptions_wbtable.php │ ├── bulkoperations_table.php │ ├── event_log_table.php │ ├── instancetemplatessettings_table.php │ ├── manageusers_table.php │ ├── optiondates_teachers_table.php │ ├── optiontemplatessettings_table.php │ ├── teacher_performed_units_table.php │ └── teachers_instance_report_table.php ├── task │ ├── assign_competency.php │ ├── check_answers.php │ ├── clean_booking_db.php │ ├── confirm_bookinganswer_by_rule_adhoc.php │ ├── delete_conditions_from_bookinganswer_by_rule_adhoc.php │ ├── enrol_bookedusers_tocourse.php │ ├── purge_campaign_caches.php │ ├── recalculate_prices.php │ ├── remove_activity_completion.php │ ├── send_completion_mails.php │ ├── send_confirmation_mails.php │ ├── send_mail_by_rule_adhoc.php │ ├── send_notification_mails.php │ ├── send_reminder_mails.php │ └── task_adhoc_reset_optiondates_for_semester.php ├── teachers_handler.php └── utils │ ├── db.php │ ├── wb_payment.php │ └── webservice_import.php ├── confirmactivity.php ├── customfield.php ├── customfieldsettings.php ├── db ├── access.php ├── caches.php ├── events.php ├── install.php ├── install.xml ├── log.php ├── messages.php ├── mobile.php ├── services.php ├── shortcodes.php ├── subplugins.json ├── tasks.php ├── upgrade.php └── upgradelib.php ├── download.php ├── download_optiondates_teachers_report.php ├── download_report2.php ├── edit_campaigns.php ├── edit_optiontemplates.php ├── edit_rules.php ├── editoptions.php ├── enrollink.php ├── importexcel.php ├── importexcel_form.php ├── importoptions.php ├── index.php ├── instancetemplateadd.php ├── instancetemplatessettings.php ├── lang ├── de │ └── booking.php └── en │ └── booking.php ├── lib.php ├── link.php ├── locallib.php ├── mod_form.php ├── moveoption.php ├── mybookings.php ├── option_date_template.php ├── optiondates_teachers_report.php ├── optionformconfig.php ├── optiontemplatessettings.php ├── optionview.php ├── otherbooking.php ├── otherbookingaddrule.php ├── otherbookingaddrule_form.php ├── pix ├── column.png ├── icon.png ├── icon.svg └── wb-logo.png ├── pricecategories.php ├── rating_rest.php ├── recalculateprices.php ├── report.php ├── report2.php ├── semesters.php ├── sendmessage.php ├── sendmessageform.class.php ├── settings.php ├── styles.css ├── subbooking_timetabletest.php ├── subscribeusers.php ├── subscribeusersactivity.php ├── tag.php ├── tagtemplates.php ├── tagtemplatesadd.php ├── tagtemplatesadd_form.php ├── teacher.php ├── teacher_performed_units_report.php ├── teachers.php ├── teachers_form.php ├── teachers_instance_report.php ├── templates ├── booked_user.mustache ├── booked_users.mustache ├── bookingactions │ └── boactionslist.mustache ├── bookingoption_changes.mustache ├── bookingoption_dates.mustache ├── bookingoption_dates_custom_hidden_inputs.mustache ├── bookingoption_dates_custom_list_items.mustache ├── bookingoption_description.mustache ├── bookingoption_description_cartitem.mustache ├── bookingoption_description_dates.mustache ├── bookingoption_description_event.mustache ├── bookingoption_description_ical.mustache ├── bookingoption_description_mail.mustache ├── bookingoption_description_optiondates.mustache ├── bookingoption_description_prepagemodal_bookit.mustache ├── bookingoption_description_teachers.mustache ├── bookingoption_description_view.mustache ├── bookingpage │ ├── footer.mustache │ ├── header.mustache │ ├── prepagebody.mustache │ ├── prepageinline.mustache │ └── prepagemodal.mustache ├── bookit_button.mustache ├── bookit_price.mustache ├── business_card.mustache ├── button_notifyme.mustache ├── campaignslist.mustache ├── col_action.mustache ├── col_availableplaces.mustache ├── col_coursestarttime.mustache ├── col_price.mustache ├── col_responsiblecontact.mustache ├── col_teacher.mustache ├── col_text.mustache ├── col_text_with_description.mustache ├── condition │ ├── bookingpolicy.mustache │ ├── confirmation.mustache │ └── customform.mustache ├── coursepage_shortinfo_and_button.mustache ├── deputydisplay.mustache ├── deputyselect.mustache ├── edit_bookingnotes.mustache ├── elective │ ├── component_elective.mustache │ └── component_elective_modal.mustache ├── enrollink.mustache ├── eventslist.mustache ├── form-course-selector-suggestion.mustache ├── form-user-selector-suggestion.mustache ├── form_booking_options_selector_suggestion.mustache ├── instance_description.mustache ├── mobile │ ├── ionform │ │ ├── advcheckbox.mustache │ │ ├── select.mustache │ │ ├── shorttext.mustache │ │ └── static.mustache │ ├── mobile_booking_option_details.mustache │ ├── mobile_bookit_button.mustache │ ├── mobile_details_button.mustache │ ├── mobile_mybookings_list.mustache │ └── mobile_view_page.mustache ├── option │ ├── option_collapsible_close.mustache │ └── option_collapsible_open.mustache ├── optiondates_extrainfo.mustache ├── optiondates_for_placeholder.mustache ├── optiondates_only.mustache ├── optiondates_with_entities.mustache ├── optiondatesteacherstable_list.mustache ├── optiondatesteacherstable_list_container.mustache ├── optiondatesteacherstable_list_row.mustache ├── page_allteachers.mustache ├── page_teacher.mustache ├── pricecategories.mustache ├── recalculateprices.mustache ├── report │ ├── allusercertificate_modal.mustache │ ├── navigation_dropdown.mustache │ └── option.mustache ├── ruleslist.mustache ├── semesters_holidays.mustache ├── settings │ └── optionformconfig.mustache ├── shortcodes_table.mustache ├── signin_downloadform.mustache ├── subbooking │ ├── additionalitem.mustache │ ├── additionalperson.mustache │ ├── additionalperson_description.mustache │ └── timeslottable.mustache ├── subbookingslist.mustache ├── table_cards.mustache ├── table_cards_container.mustache ├── table_cards_row.mustache ├── table_list.mustache ├── table_list_container.mustache ├── table_list_row.mustache └── view.mustache ├── tests ├── backup │ └── backup_restore_test.php ├── behat │ ├── behat_mod_booking.php │ ├── booking_add_and_book_option.feature │ ├── booking_availability.feature │ ├── booking_availability_custom_form.feature │ ├── booking_book_cancel_option.feature │ ├── booking_book_policy_setting.feature │ ├── booking_bulkoperations.feature │ ├── booking_campaigns.feature │ ├── booking_campaigns2.feature │ ├── booking_campaigns3.feature │ ├── booking_cashier_shortcode_checkout.feature │ ├── booking_contact_persons.feature │ ├── booking_courseconnection.feature │ ├── booking_create_template.feature │ ├── booking_delete.feature │ ├── booking_duplicate_with_options.feature │ ├── booking_edit_setting.feature │ ├── booking_edit_setting_new_tab.feature │ ├── booking_edit_setting_switch_view.feature │ ├── booking_edit_settings_customfield_filter.feature │ ├── booking_enrolllink.feature │ ├── booking_history.feature │ ├── booking_installments.feature │ ├── booking_instance_manage.feature │ ├── booking_list_filtering.feature │ ├── booking_manage_entities.feature │ ├── booking_manage_waiting_list.feature │ ├── booking_maxoptionforcategory.feature │ ├── booking_maxoptionforcategory_dynamicdropdown.feature │ ├── booking_messages.feature │ ├── booking_navigation_setting.feature │ ├── booking_option_actions.feature │ ├── booking_payment_account.feature │ ├── booking_price_formula.feature │ ├── booking_pricecancelation.feature │ ├── booking_prices.feature │ ├── booking_recurring_option.feature │ ├── booking_rules.feature │ ├── booking_self_learning_course.feature │ ├── booking_semesters.feature │ ├── booking_subbooking.feature │ └── booking_teachers.feature ├── bo_actions │ ├── booking_action_bookotheroption_test.php │ └── booking_action_test.php ├── bo_availability │ ├── condition_all_test.php │ ├── condition_allowupdate_test.php │ ├── condition_allowupdatetimestamp_test.php │ ├── condition_bookingpolicy_test.php │ ├── condition_bookingtime_test.php │ ├── condition_enrolledincohorts_test.php │ ├── condition_hascompetency_test.php │ ├── condition_instanceavailability_test.php │ ├── condition_maxoptionsfromcategory_test.php │ └── condition_otheroptionsavailable_test.php ├── booking_answers │ └── booking_answers_test.php ├── booking_campaigns │ └── booking_campaigns_test.php ├── booking_course_connection_test.php ├── booking_groupenrolment_test.php ├── booking_option_test.php ├── booking_options_fields │ ├── date_series_in_semester_test.php │ ├── moveoption_test.php │ ├── recurringoptions_test.php │ ├── sharedplaces_test.php │ └── teachers_calendar_test.php ├── booking_rules │ ├── rules_enrollink_test.php │ ├── rules_n_days_test.php │ ├── rules_override_test.php │ ├── rules_selflearningcourse_test.php │ ├── rules_template_test.php │ ├── rules_test.php │ ├── rules_waitinglist_notification_test.php │ └── rules_waitinglist_test.php ├── bookinghistory_presence_test.php ├── bookinghistory_test.php ├── bookingoption_filter_test.php ├── bookitbutton │ ├── bookitbutton_bookondetails_test.php │ └── bookitbutton_test.php ├── certificates │ ├── certificate_bo_completed_test.php │ └── certificate_presence_test.php ├── checkanswers │ └── checkanswers_test.php ├── checklist_generator_test.php ├── circumvent_userprofilecondition_test.php ├── competency_test │ └── competency_test.php ├── confirmation │ ├── confirmation_test.php │ └── waitinglist_test.php ├── course_completion_test.php ├── event │ └── events_test.php ├── fixtures │ ├── options_coma_new00.csv │ ├── options_coma_new01.csv │ └── options_coma_new02.csv ├── generator │ ├── behat_mod_booking_generator.php │ └── lib.php ├── ical │ └── ical_test.php ├── importer │ └── booking_importer_test.php ├── lib_test.php ├── multiple_bookings │ └── booking_test.php ├── optiondates │ └── optiondate_answer_test.php ├── settings │ └── optionformconfig_info_test.php ├── shopping_cart │ ├── shopping_cart_cancellation_with_price_test.php │ ├── shopping_cart_installment_test.php │ └── shopping_cart_test.php ├── shortcodes │ ├── allbookingoptions_test.php │ ├── bulkoperations_test.php │ ├── cfincludeandcustomfield_test.php │ ├── courselist_test.php │ ├── linkbacktocourse_test.php │ ├── mycourselist_test.php │ └── recommendedin_test.php └── task │ └── send_reminder_mails_test.php ├── thirdpartylibs.xml ├── unsubscribe.php ├── version.php ├── view.php ├── viewconfirmation.php ├── viewpolicy.php └── vue3 ├── .babelrc ├── README.md ├── amd └── build │ ├── main.js │ └── vue-3.css ├── components ├── BookingDashboard.vue ├── FilterSearchbar.vue ├── NotFound.vue ├── dashboard │ ├── BookingStats.vue │ ├── ConfigForm.vue │ ├── StatisticsView.vue │ └── TabInformation.vue ├── helper │ ├── CapabilityButtons.vue │ ├── CapabilityOptions.vue │ ├── SkeletonContent.vue │ ├── SkeletonTab.vue │ └── SubLists.vue └── modal │ └── ConfirmationModal.vue ├── coverage ├── lcov-report │ ├── CapabilityButtons.vue.html │ ├── CapabilityOptions.vue.html │ ├── SkeletonContent.vue.html │ ├── SkeletonTab.vue.html │ ├── base.css │ ├── block-navigation.js │ ├── charthelper │ │ ├── childNodes.vue.html │ │ ├── index.html │ │ └── parentNodes.vue.html │ ├── components │ │ ├── BertaDashboard.vue.html │ │ ├── FilterSearchbar.vue.html │ │ ├── Searchbar.vue.html │ │ ├── charthelper │ │ │ ├── childNodes.vue.html │ │ │ ├── index.html │ │ │ ├── parentNodes.vue.html │ │ │ └── textInputs.vue.html │ │ ├── helper │ │ │ ├── CapabilityButtons.vue.html │ │ │ ├── CapabilityOptions.vue.html │ │ │ ├── SkeletonContent.vue.html │ │ │ ├── SkeletonTab.vue.html │ │ │ └── index.html │ │ ├── index.html │ │ └── nodes_items │ │ │ ├── DateInfo.vue.html │ │ │ └── index.html │ ├── favicon.png │ ├── index.html │ ├── nodes_items │ │ ├── DateInfo.vue.html │ │ └── index.html │ ├── prettify.css │ ├── prettify.js │ ├── sort-arrow-sprite.png │ ├── sorter.js │ └── tests │ │ └── mocks │ │ ├── index.html │ │ └── mockStore.js.html └── lcov.info ├── index.html ├── jest.config.js ├── main.js ├── package-lock.json ├── package.json ├── router └── router.js ├── scss └── custom.scss ├── store.js ├── tests ├── mocks │ └── mockStore.js └── unit │ ├── BertaDashboard.spec.js │ ├── Searchbar.spec.js │ └── helper │ ├── CapabilityButtons.spec.js │ ├── CapabilityOptions.spec.js │ ├── FilterSkeletonTab.spec.js │ └── SkeletonContent.spec.js ├── vite.config.js └── webpack.config.js /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/musi_ticket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/.github/ISSUE_TEMPLATE/musi_ticket.md -------------------------------------------------------------------------------- /.github/workflows/erpnext.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/.github/workflows/erpnext.yml -------------------------------------------------------------------------------- /.github/workflows/moodle-plugin-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/.github/workflows/moodle-plugin-ci.yml -------------------------------------------------------------------------------- /.github/workflows/moodle-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/.github/workflows/moodle-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/CHANGES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/README.md -------------------------------------------------------------------------------- /amd/build/app-lazy.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/app-lazy.min.js -------------------------------------------------------------------------------- /amd/build/app-lazy.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/app-lazy.min.js.map -------------------------------------------------------------------------------- /amd/build/bookingcompetencies.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/bookingcompetencies.min.js -------------------------------------------------------------------------------- /amd/build/bookingcompetencies.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/bookingcompetencies.min.js.map -------------------------------------------------------------------------------- /amd/build/bookinginstancetemplateselect.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/bookinginstancetemplateselect.min.js -------------------------------------------------------------------------------- /amd/build/bookinginstancetemplateselect.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/bookinginstancetemplateselect.min.js.map -------------------------------------------------------------------------------- /amd/build/bookingjslib.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/bookingjslib.min.js -------------------------------------------------------------------------------- /amd/build/bookingjslib.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/bookingjslib.min.js.map -------------------------------------------------------------------------------- /amd/build/bookingpage/prepageFooter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/bookingpage/prepageFooter.min.js -------------------------------------------------------------------------------- /amd/build/bookingpage/prepageFooter.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/bookingpage/prepageFooter.min.js.map -------------------------------------------------------------------------------- /amd/build/bookit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/bookit.min.js -------------------------------------------------------------------------------- /amd/build/bookit.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/bookit.min.js.map -------------------------------------------------------------------------------- /amd/build/button_notifyme.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/button_notifyme.min.js -------------------------------------------------------------------------------- /amd/build/button_notifyme.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/button_notifyme.min.js.map -------------------------------------------------------------------------------- /amd/build/condition/bookingPolicy.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/condition/bookingPolicy.min.js -------------------------------------------------------------------------------- /amd/build/condition/bookingPolicy.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/condition/bookingPolicy.min.js.map -------------------------------------------------------------------------------- /amd/build/condition/customForm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/condition/customForm.min.js -------------------------------------------------------------------------------- /amd/build/condition/customForm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/condition/customForm.min.js.map -------------------------------------------------------------------------------- /amd/build/confirm_cancel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/confirm_cancel.min.js -------------------------------------------------------------------------------- /amd/build/confirm_cancel.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/confirm_cancel.min.js.map -------------------------------------------------------------------------------- /amd/build/csvimport.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/csvimport.min.js -------------------------------------------------------------------------------- /amd/build/csvimport.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/csvimport.min.js.map -------------------------------------------------------------------------------- /amd/build/dynamicactionsform.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/dynamicactionsform.min.js -------------------------------------------------------------------------------- /amd/build/dynamicactionsform.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/dynamicactionsform.min.js.map -------------------------------------------------------------------------------- /amd/build/dynamiccampaignsform.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/dynamiccampaignsform.min.js -------------------------------------------------------------------------------- /amd/build/dynamiccampaignsform.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/dynamiccampaignsform.min.js.map -------------------------------------------------------------------------------- /amd/build/dynamicchangesemesterform.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/dynamicchangesemesterform.min.js -------------------------------------------------------------------------------- /amd/build/dynamicchangesemesterform.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/dynamicchangesemesterform.min.js.map -------------------------------------------------------------------------------- /amd/build/dynamicdeputymodal.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/dynamicdeputymodal.min.js -------------------------------------------------------------------------------- /amd/build/dynamicdeputymodal.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/dynamicdeputymodal.min.js.map -------------------------------------------------------------------------------- /amd/build/dynamiceditoptionform.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/dynamiceditoptionform.min.js -------------------------------------------------------------------------------- /amd/build/dynamiceditoptionform.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/dynamiceditoptionform.min.js.map -------------------------------------------------------------------------------- /amd/build/dynamicholidaysform.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/dynamicholidaysform.min.js -------------------------------------------------------------------------------- /amd/build/dynamicholidaysform.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/dynamicholidaysform.min.js.map -------------------------------------------------------------------------------- /amd/build/dynamicoptiondateform.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/dynamicoptiondateform.min.js -------------------------------------------------------------------------------- /amd/build/dynamicoptiondateform.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/dynamicoptiondateform.min.js.map -------------------------------------------------------------------------------- /amd/build/dynamicpricecategoriesform.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/dynamicpricecategoriesform.min.js -------------------------------------------------------------------------------- /amd/build/dynamicpricecategoriesform.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/dynamicpricecategoriesform.min.js.map -------------------------------------------------------------------------------- /amd/build/dynamicrulesform.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/dynamicrulesform.min.js -------------------------------------------------------------------------------- /amd/build/dynamicrulesform.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/dynamicrulesform.min.js.map -------------------------------------------------------------------------------- /amd/build/dynamicsemestersform.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/dynamicsemestersform.min.js -------------------------------------------------------------------------------- /amd/build/dynamicsemestersform.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/dynamicsemestersform.min.js.map -------------------------------------------------------------------------------- /amd/build/dynamicsubbookingsform.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/dynamicsubbookingsform.min.js -------------------------------------------------------------------------------- /amd/build/dynamicsubbookingsform.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/dynamicsubbookingsform.min.js.map -------------------------------------------------------------------------------- /amd/build/edit-teacher-description.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/edit-teacher-description.min.js -------------------------------------------------------------------------------- /amd/build/edit-teacher-description.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/edit-teacher-description.min.js.map -------------------------------------------------------------------------------- /amd/build/edit_note.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/edit_note.min.js -------------------------------------------------------------------------------- /amd/build/edit_note.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/edit_note.min.js.map -------------------------------------------------------------------------------- /amd/build/editteachersforoptiondate_form.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/editteachersforoptiondate_form.min.js -------------------------------------------------------------------------------- /amd/build/editteachersforoptiondate_form.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/editteachersforoptiondate_form.min.js.map -------------------------------------------------------------------------------- /amd/build/elective-sorting.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/elective-sorting.min.js -------------------------------------------------------------------------------- /amd/build/elective-sorting.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/elective-sorting.min.js.map -------------------------------------------------------------------------------- /amd/build/form_booking_options_selector.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/form_booking_options_selector.min.js -------------------------------------------------------------------------------- /amd/build/form_booking_options_selector.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/form_booking_options_selector.min.js.map -------------------------------------------------------------------------------- /amd/build/form_courses_selector.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/form_courses_selector.min.js -------------------------------------------------------------------------------- /amd/build/form_courses_selector.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/form_courses_selector.min.js.map -------------------------------------------------------------------------------- /amd/build/form_teachers_selector.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/form_teachers_selector.min.js -------------------------------------------------------------------------------- /amd/build/form_teachers_selector.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/form_teachers_selector.min.js.map -------------------------------------------------------------------------------- /amd/build/form_templates_selector.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/form_templates_selector.min.js -------------------------------------------------------------------------------- /amd/build/form_templates_selector.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/form_templates_selector.min.js.map -------------------------------------------------------------------------------- /amd/build/form_users_selector.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/form_users_selector.min.js -------------------------------------------------------------------------------- /amd/build/form_users_selector.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/form_users_selector.min.js.map -------------------------------------------------------------------------------- /amd/build/init_comments.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/init_comments.min.js -------------------------------------------------------------------------------- /amd/build/init_comments.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/init_comments.min.js.map -------------------------------------------------------------------------------- /amd/build/jquery.barrating.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/jquery.barrating.min.js -------------------------------------------------------------------------------- /amd/build/jquery.barrating.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/jquery.barrating.min.js.map -------------------------------------------------------------------------------- /amd/build/modal_init.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/modal_init.min.js -------------------------------------------------------------------------------- /amd/build/modal_init.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/modal_init.min.js.map -------------------------------------------------------------------------------- /amd/build/notifications.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/notifications.min.js -------------------------------------------------------------------------------- /amd/build/notifications.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/notifications.min.js.map -------------------------------------------------------------------------------- /amd/build/signinsheetdownload.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/signinsheetdownload.min.js -------------------------------------------------------------------------------- /amd/build/signinsheetdownload.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/signinsheetdownload.min.js.map -------------------------------------------------------------------------------- /amd/build/view_actions.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/view_actions.min.js -------------------------------------------------------------------------------- /amd/build/view_actions.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/view_actions.min.js.map -------------------------------------------------------------------------------- /amd/build/wunderbyte.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/wunderbyte.min.js -------------------------------------------------------------------------------- /amd/build/wunderbyte.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/build/wunderbyte.min.js.map -------------------------------------------------------------------------------- /amd/src/app-lazy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/app-lazy.js -------------------------------------------------------------------------------- /amd/src/app-lazy.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/app-lazy.js.LICENSE.txt -------------------------------------------------------------------------------- /amd/src/bookingcompetencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/bookingcompetencies.js -------------------------------------------------------------------------------- /amd/src/bookinginstancetemplateselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/bookinginstancetemplateselect.js -------------------------------------------------------------------------------- /amd/src/bookingjslib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/bookingjslib.js -------------------------------------------------------------------------------- /amd/src/bookingpage/prepageFooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/bookingpage/prepageFooter.js -------------------------------------------------------------------------------- /amd/src/bookit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/bookit.js -------------------------------------------------------------------------------- /amd/src/button_notifyme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/button_notifyme.js -------------------------------------------------------------------------------- /amd/src/condition/bookingPolicy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/condition/bookingPolicy.js -------------------------------------------------------------------------------- /amd/src/condition/customForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/condition/customForm.js -------------------------------------------------------------------------------- /amd/src/condition/subbookingAdditionalPerson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/condition/subbookingAdditionalPerson.js -------------------------------------------------------------------------------- /amd/src/confirm_cancel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/confirm_cancel.js -------------------------------------------------------------------------------- /amd/src/csvimport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/csvimport.js -------------------------------------------------------------------------------- /amd/src/dynamicactionsform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/dynamicactionsform.js -------------------------------------------------------------------------------- /amd/src/dynamiccampaignsform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/dynamiccampaignsform.js -------------------------------------------------------------------------------- /amd/src/dynamicchangesemesterform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/dynamicchangesemesterform.js -------------------------------------------------------------------------------- /amd/src/dynamicdeputymodal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/dynamicdeputymodal.js -------------------------------------------------------------------------------- /amd/src/dynamiceditoptionform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/dynamiceditoptionform.js -------------------------------------------------------------------------------- /amd/src/dynamicholidaysform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/dynamicholidaysform.js -------------------------------------------------------------------------------- /amd/src/dynamicoptiondateform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/dynamicoptiondateform.js -------------------------------------------------------------------------------- /amd/src/dynamicpricecategoriesform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/dynamicpricecategoriesform.js -------------------------------------------------------------------------------- /amd/src/dynamicrulesform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/dynamicrulesform.js -------------------------------------------------------------------------------- /amd/src/dynamicsemestersform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/dynamicsemestersform.js -------------------------------------------------------------------------------- /amd/src/dynamicsubbookingsform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/dynamicsubbookingsform.js -------------------------------------------------------------------------------- /amd/src/edit-teacher-description.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/edit-teacher-description.js -------------------------------------------------------------------------------- /amd/src/edit_note.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/edit_note.js -------------------------------------------------------------------------------- /amd/src/editteachersforoptiondate_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/editteachersforoptiondate_form.js -------------------------------------------------------------------------------- /amd/src/elective-sorting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/elective-sorting.js -------------------------------------------------------------------------------- /amd/src/form_booking_options_selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/form_booking_options_selector.js -------------------------------------------------------------------------------- /amd/src/form_courses_selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/form_courses_selector.js -------------------------------------------------------------------------------- /amd/src/form_teachers_selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/form_teachers_selector.js -------------------------------------------------------------------------------- /amd/src/form_templates_selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/form_templates_selector.js -------------------------------------------------------------------------------- /amd/src/form_users_selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/form_users_selector.js -------------------------------------------------------------------------------- /amd/src/init_comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/init_comments.js -------------------------------------------------------------------------------- /amd/src/jquery.barrating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/jquery.barrating.js -------------------------------------------------------------------------------- /amd/src/modal_init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/modal_init.js -------------------------------------------------------------------------------- /amd/src/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/notifications.js -------------------------------------------------------------------------------- /amd/src/signinsheetdownload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/signinsheetdownload.js -------------------------------------------------------------------------------- /amd/src/view_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/view_actions.js -------------------------------------------------------------------------------- /amd/src/wunderbyte.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/amd/src/wunderbyte.js -------------------------------------------------------------------------------- /backup/moodle2/backup_booking_settingslib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/backup/moodle2/backup_booking_settingslib.php -------------------------------------------------------------------------------- /backup/moodle2/backup_booking_stepslib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/backup/moodle2/backup_booking_stepslib.php -------------------------------------------------------------------------------- /backup/moodle2/restore_booking_stepslib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/backup/moodle2/restore_booking_stepslib.php -------------------------------------------------------------------------------- /bookingextension/README.md: -------------------------------------------------------------------------------- 1 | This is the folder where you can add booking extensions. -------------------------------------------------------------------------------- /bookingextension/confirmation_trainer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/bookingextension/confirmation_trainer/LICENSE -------------------------------------------------------------------------------- /bookingextension/confirmation_trainer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/bookingextension/confirmation_trainer/README.md -------------------------------------------------------------------------------- /bookingextension/confirmation_trainer/db/events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/bookingextension/confirmation_trainer/db/events.php -------------------------------------------------------------------------------- /bookingextension/confirmation_trainer/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/bookingextension/confirmation_trainer/lib.php -------------------------------------------------------------------------------- /bookingextension/confirmation_trainer/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/bookingextension/confirmation_trainer/version.php -------------------------------------------------------------------------------- /bookinginstancetemplatessettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/bookinginstancetemplatessettings.php -------------------------------------------------------------------------------- /bookingredirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/bookingredirect.php -------------------------------------------------------------------------------- /categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/categories.php -------------------------------------------------------------------------------- /categoriesform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/categoriesform.class.php -------------------------------------------------------------------------------- /category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/category.php -------------------------------------------------------------------------------- /categoryadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/categoryadd.php -------------------------------------------------------------------------------- /classes/GoogleUrlApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/GoogleUrlApi.php -------------------------------------------------------------------------------- /classes/all_userbookings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/all_userbookings.php -------------------------------------------------------------------------------- /classes/bo_actions/action_types/cancelbooking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/bo_actions/action_types/cancelbooking.php -------------------------------------------------------------------------------- /classes/bo_actions/actions_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/bo_actions/actions_info.php -------------------------------------------------------------------------------- /classes/bo_actions/booking_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/bo_actions/booking_action.php -------------------------------------------------------------------------------- /classes/bo_availability/bo_condition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/bo_availability/bo_condition.php -------------------------------------------------------------------------------- /classes/bo_availability/bo_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/bo_availability/bo_info.php -------------------------------------------------------------------------------- /classes/bo_availability/bo_subcondition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/bo_availability/bo_subcondition.php -------------------------------------------------------------------------------- /classes/bo_availability/bo_subinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/bo_availability/bo_subinfo.php -------------------------------------------------------------------------------- /classes/bo_availability/conditions/customform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/bo_availability/conditions/customform.php -------------------------------------------------------------------------------- /classes/bo_availability/conditions/isbookable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/bo_availability/conditions/isbookable.php -------------------------------------------------------------------------------- /classes/bo_availability/conditions/isloggedin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/bo_availability/conditions/isloggedin.php -------------------------------------------------------------------------------- /classes/bo_availability/conditions/priceisset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/bo_availability/conditions/priceisset.php -------------------------------------------------------------------------------- /classes/bo_availability/conditions/subbooking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/bo_availability/conditions/subbooking.php -------------------------------------------------------------------------------- /classes/booking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking.php -------------------------------------------------------------------------------- /classes/booking_answers/booking_answers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_answers/booking_answers.php -------------------------------------------------------------------------------- /classes/booking_answers/scope_base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_answers/scope_base.php -------------------------------------------------------------------------------- /classes/booking_answers/scope_base_answers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_answers/scope_base_answers.php -------------------------------------------------------------------------------- /classes/booking_answers/scope_base_options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_answers/scope_base_options.php -------------------------------------------------------------------------------- /classes/booking_answers/scopes/alloptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_answers/scopes/alloptions.php -------------------------------------------------------------------------------- /classes/booking_answers/scopes/course.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_answers/scopes/course.php -------------------------------------------------------------------------------- /classes/booking_answers/scopes/courseanswers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_answers/scopes/courseanswers.php -------------------------------------------------------------------------------- /classes/booking_answers/scopes/instance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_answers/scopes/instance.php -------------------------------------------------------------------------------- /classes/booking_answers/scopes/option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_answers/scopes/option.php -------------------------------------------------------------------------------- /classes/booking_answers/scopes/optiondate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_answers/scopes/optiondate.php -------------------------------------------------------------------------------- /classes/booking_answers/scopes/supervisorteam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_answers/scopes/supervisorteam.php -------------------------------------------------------------------------------- /classes/booking_answers/scopes/system.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_answers/scopes/system.php -------------------------------------------------------------------------------- /classes/booking_answers/scopes/systemanswers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_answers/scopes/systemanswers.php -------------------------------------------------------------------------------- /classes/booking_bookit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_bookit.php -------------------------------------------------------------------------------- /classes/booking_campaigns/booking_campaign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_campaigns/booking_campaign.php -------------------------------------------------------------------------------- /classes/booking_campaigns/campaigns_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_campaigns/campaigns_info.php -------------------------------------------------------------------------------- /classes/booking_context_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_context_helper.php -------------------------------------------------------------------------------- /classes/booking_existing_user_selector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_existing_user_selector.php -------------------------------------------------------------------------------- /classes/booking_option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_option.php -------------------------------------------------------------------------------- /classes/booking_option_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_option_settings.php -------------------------------------------------------------------------------- /classes/booking_potential_user_selector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_potential_user_selector.php -------------------------------------------------------------------------------- /classes/booking_rules/actions/send_mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_rules/actions/send_mail.php -------------------------------------------------------------------------------- /classes/booking_rules/actions_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_rules/actions_info.php -------------------------------------------------------------------------------- /classes/booking_rules/booking_rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_rules/booking_rule.php -------------------------------------------------------------------------------- /classes/booking_rules/booking_rule_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_rules/booking_rule_action.php -------------------------------------------------------------------------------- /classes/booking_rules/booking_rule_condition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_rules/booking_rule_condition.php -------------------------------------------------------------------------------- /classes/booking_rules/booking_rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_rules/booking_rules.php -------------------------------------------------------------------------------- /classes/booking_rules/conditions/select_users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_rules/conditions/select_users.php -------------------------------------------------------------------------------- /classes/booking_rules/conditions_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_rules/conditions_info.php -------------------------------------------------------------------------------- /classes/booking_rules/rules/rule_daysbefore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_rules/rules/rule_daysbefore.php -------------------------------------------------------------------------------- /classes/booking_rules/rules_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_rules/rules_info.php -------------------------------------------------------------------------------- /classes/booking_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_settings.php -------------------------------------------------------------------------------- /classes/booking_subbookit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_subbookit.php -------------------------------------------------------------------------------- /classes/booking_tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_tags.php -------------------------------------------------------------------------------- /classes/booking_user_selector_base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_user_selector_base.php -------------------------------------------------------------------------------- /classes/booking_utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/booking_utils.php -------------------------------------------------------------------------------- /classes/calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/calendar.php -------------------------------------------------------------------------------- /classes/checklist/checklist_generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/checklist/checklist_generator.php -------------------------------------------------------------------------------- /classes/checklist/checklist_pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/checklist/checklist_pdf.php -------------------------------------------------------------------------------- /classes/completion/custom_completion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/completion/custom_completion.php -------------------------------------------------------------------------------- /classes/coursecategories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/coursecategories.php -------------------------------------------------------------------------------- /classes/customfield/booking_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/customfield/booking_handler.php -------------------------------------------------------------------------------- /classes/customfield/optiondate_cfields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/customfield/optiondate_cfields.php -------------------------------------------------------------------------------- /classes/dates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/dates.php -------------------------------------------------------------------------------- /classes/elective.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/elective.php -------------------------------------------------------------------------------- /classes/enrollink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/enrollink.php -------------------------------------------------------------------------------- /classes/entities/service_provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/entities/service_provider.php -------------------------------------------------------------------------------- /classes/event/booking_afteractionsfailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/booking_afteractionsfailed.php -------------------------------------------------------------------------------- /classes/event/booking_debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/booking_debug.php -------------------------------------------------------------------------------- /classes/event/booking_failed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/booking_failed.php -------------------------------------------------------------------------------- /classes/event/booking_rulesexecutionfailes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/booking_rulesexecutionfailes.php -------------------------------------------------------------------------------- /classes/event/bookinganswer_cancelled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/bookinganswer_cancelled.php -------------------------------------------------------------------------------- /classes/event/bookinganswer_confirmed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/bookinganswer_confirmed.php -------------------------------------------------------------------------------- /classes/event/bookinganswer_denied.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/bookinganswer_denied.php -------------------------------------------------------------------------------- /classes/event/bookinganswer_notesedited.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/bookinganswer_notesedited.php -------------------------------------------------------------------------------- /classes/event/bookinganswer_presencechanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/bookinganswer_presencechanged.php -------------------------------------------------------------------------------- /classes/event/bookinginstance_updated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/bookinginstance_updated.php -------------------------------------------------------------------------------- /classes/event/bookingoption_booked.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/bookingoption_booked.php -------------------------------------------------------------------------------- /classes/event/bookingoption_cancelled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/bookingoption_cancelled.php -------------------------------------------------------------------------------- /classes/event/bookingoption_completed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/bookingoption_completed.php -------------------------------------------------------------------------------- /classes/event/bookingoption_created.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/bookingoption_created.php -------------------------------------------------------------------------------- /classes/event/bookingoption_deleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/bookingoption_deleted.php -------------------------------------------------------------------------------- /classes/event/bookingoption_freetobookagain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/bookingoption_freetobookagain.php -------------------------------------------------------------------------------- /classes/event/bookingoption_uncompleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/bookingoption_uncompleted.php -------------------------------------------------------------------------------- /classes/event/bookingoption_updated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/bookingoption_updated.php -------------------------------------------------------------------------------- /classes/event/bookingoptiondate_created.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/bookingoptiondate_created.php -------------------------------------------------------------------------------- /classes/event/bookingoptiondate_deleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/bookingoptiondate_deleted.php -------------------------------------------------------------------------------- /classes/event/bookingoptionwaitinglist_booked.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/bookingoptionwaitinglist_booked.php -------------------------------------------------------------------------------- /classes/event/course_module_viewed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/course_module_viewed.php -------------------------------------------------------------------------------- /classes/event/custom_bulk_message_sent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/custom_bulk_message_sent.php -------------------------------------------------------------------------------- /classes/event/custom_field_changed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/custom_field_changed.php -------------------------------------------------------------------------------- /classes/event/custom_message_sent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/custom_message_sent.php -------------------------------------------------------------------------------- /classes/event/enrollink_triggered.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/enrollink_triggered.php -------------------------------------------------------------------------------- /classes/event/message_sent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/message_sent.php -------------------------------------------------------------------------------- /classes/event/optiondates_teacher_added.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/optiondates_teacher_added.php -------------------------------------------------------------------------------- /classes/event/optiondates_teacher_deleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/optiondates_teacher_deleted.php -------------------------------------------------------------------------------- /classes/event/pricecategory_changed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/pricecategory_changed.php -------------------------------------------------------------------------------- /classes/event/records_imported.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/records_imported.php -------------------------------------------------------------------------------- /classes/event/reminder1_sent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/reminder1_sent.php -------------------------------------------------------------------------------- /classes/event/reminder2_sent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/reminder2_sent.php -------------------------------------------------------------------------------- /classes/event/reminder_teacher_sent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/reminder_teacher_sent.php -------------------------------------------------------------------------------- /classes/event/report_viewed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/report_viewed.php -------------------------------------------------------------------------------- /classes/event/rest_script_failed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/rest_script_failed.php -------------------------------------------------------------------------------- /classes/event/rest_script_success.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/rest_script_success.php -------------------------------------------------------------------------------- /classes/event/teacher_added.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/teacher_added.php -------------------------------------------------------------------------------- /classes/event/teacher_removed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/event/teacher_removed.php -------------------------------------------------------------------------------- /classes/existing_subscriber_selector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/existing_subscriber_selector.php -------------------------------------------------------------------------------- /classes/external/addbookingoption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/external/addbookingoption.php -------------------------------------------------------------------------------- /classes/external/allow_add_item_to_cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/external/allow_add_item_to_cart.php -------------------------------------------------------------------------------- /classes/external/bookings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/external/bookings.php -------------------------------------------------------------------------------- /classes/external/bookit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/external/bookit.php -------------------------------------------------------------------------------- /classes/external/categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/external/categories.php -------------------------------------------------------------------------------- /classes/external/get_option_field_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/external/get_option_field_config.php -------------------------------------------------------------------------------- /classes/external/get_parent_categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/external/get_parent_categories.php -------------------------------------------------------------------------------- /classes/external/get_submission_mobile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/external/get_submission_mobile.php -------------------------------------------------------------------------------- /classes/external/init_comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/external/init_comments.php -------------------------------------------------------------------------------- /classes/external/instancetemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/external/instancetemplate.php -------------------------------------------------------------------------------- /classes/external/load_pre_booking_page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/external/load_pre_booking_page.php -------------------------------------------------------------------------------- /classes/external/optiontemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/external/optiontemplate.php -------------------------------------------------------------------------------- /classes/external/save_option_field_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/external/save_option_field_config.php -------------------------------------------------------------------------------- /classes/external/search_booking_options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/external/search_booking_options.php -------------------------------------------------------------------------------- /classes/external/search_courses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/external/search_courses.php -------------------------------------------------------------------------------- /classes/external/search_teachers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/external/search_teachers.php -------------------------------------------------------------------------------- /classes/external/search_templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/external/search_templates.php -------------------------------------------------------------------------------- /classes/external/search_users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/external/search_users.php -------------------------------------------------------------------------------- /classes/external/set_checked_booking_instance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/external/set_checked_booking_instance.php -------------------------------------------------------------------------------- /classes/external/toggle_notify_user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/external/toggle_notify_user.php -------------------------------------------------------------------------------- /classes/external/update_bookingnotes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/external/update_bookingnotes.php -------------------------------------------------------------------------------- /classes/form/actions/actionsform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/actions/actionsform.php -------------------------------------------------------------------------------- /classes/form/actions/deleteactionsform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/actions/deleteactionsform.php -------------------------------------------------------------------------------- /classes/form/campaignsform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/campaignsform.php -------------------------------------------------------------------------------- /classes/form/condition/bookingpolicy_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/condition/bookingpolicy_form.php -------------------------------------------------------------------------------- /classes/form/condition/customform_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/condition/customform_form.php -------------------------------------------------------------------------------- /classes/form/confirmactivity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/confirmactivity.php -------------------------------------------------------------------------------- /classes/form/csvimport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/csvimport.php -------------------------------------------------------------------------------- /classes/form/customfield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/customfield.php -------------------------------------------------------------------------------- /classes/form/deletecampaignform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/deletecampaignform.php -------------------------------------------------------------------------------- /classes/form/deleteruleform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/deleteruleform.php -------------------------------------------------------------------------------- /classes/form/dynamicchangesemesterform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/dynamicchangesemesterform.php -------------------------------------------------------------------------------- /classes/form/dynamicdeputyselect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/dynamicdeputyselect.php -------------------------------------------------------------------------------- /classes/form/dynamicholidaysform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/dynamicholidaysform.php -------------------------------------------------------------------------------- /classes/form/dynamicoptiondateform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/dynamicoptiondateform.php -------------------------------------------------------------------------------- /classes/form/dynamicsemestersform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/dynamicsemestersform.php -------------------------------------------------------------------------------- /classes/form/editteachersforoptiondate_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/editteachersforoptiondate_form.php -------------------------------------------------------------------------------- /classes/form/importoptions_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/importoptions_form.php -------------------------------------------------------------------------------- /classes/form/instancetemplateadd_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/instancetemplateadd_form.php -------------------------------------------------------------------------------- /classes/form/modal_confirmcancel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/modal_confirmcancel.php -------------------------------------------------------------------------------- /classes/form/modal_editteacherdescription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/modal_editteacherdescription.php -------------------------------------------------------------------------------- /classes/form/modaloptiondateform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/modaloptiondateform.php -------------------------------------------------------------------------------- /classes/form/option_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/option_form.php -------------------------------------------------------------------------------- /classes/form/option_form_bulk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/option_form_bulk.php -------------------------------------------------------------------------------- /classes/form/optiondates/modal_change_notes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/optiondates/modal_change_notes.php -------------------------------------------------------------------------------- /classes/form/optiondates/modal_change_status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/optiondates/modal_change_status.php -------------------------------------------------------------------------------- /classes/form/pricecategories_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/pricecategories_form.php -------------------------------------------------------------------------------- /classes/form/rulesform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/rulesform.php -------------------------------------------------------------------------------- /classes/form/send_mail_to_teachers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/send_mail_to_teachers.php -------------------------------------------------------------------------------- /classes/form/subbooking/additionalperson_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/subbooking/additionalperson_form.php -------------------------------------------------------------------------------- /classes/form/subbookingsdeleteform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/subbookingsdeleteform.php -------------------------------------------------------------------------------- /classes/form/subbookingsform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/subbookingsform.php -------------------------------------------------------------------------------- /classes/form/subscribe_cohort_or_group_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/subscribe_cohort_or_group_form.php -------------------------------------------------------------------------------- /classes/form/subscribeusersactivity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/subscribeusersactivity.php -------------------------------------------------------------------------------- /classes/form/teachers_instance_report_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/form/teachers_instance_report_form.php -------------------------------------------------------------------------------- /classes/ical.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/ical.php -------------------------------------------------------------------------------- /classes/import/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/import/README.md -------------------------------------------------------------------------------- /classes/import/csvcolumn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/import/csvcolumn.php -------------------------------------------------------------------------------- /classes/import/csvsettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/import/csvsettings.php -------------------------------------------------------------------------------- /classes/import/fileparser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/import/fileparser.php -------------------------------------------------------------------------------- /classes/importer/bookingoptionsimporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/importer/bookingoptionsimporter.php -------------------------------------------------------------------------------- /classes/importer/demo.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/importer/demo.csv -------------------------------------------------------------------------------- /classes/local/checkanswers/checkanswers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/local/checkanswers/checkanswers.php -------------------------------------------------------------------------------- /classes/local/connectedcourse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/local/connectedcourse.php -------------------------------------------------------------------------------- /classes/local/mobile/customformstore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/local/mobile/customformstore.php -------------------------------------------------------------------------------- /classes/local/mobile/mobileformbuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/local/mobile/mobileformbuilder.php -------------------------------------------------------------------------------- /classes/local/modechecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/local/modechecker.php -------------------------------------------------------------------------------- /classes/local/optiondates/optiondate_answer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/local/optiondates/optiondate_answer.php -------------------------------------------------------------------------------- /classes/local/override_user_field.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/local/override_user_field.md -------------------------------------------------------------------------------- /classes/local/override_user_field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/local/override_user_field.php -------------------------------------------------------------------------------- /classes/local/pricecategories_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/local/pricecategories_handler.php -------------------------------------------------------------------------------- /classes/local/shortcode_filterfield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/local/shortcode_filterfield.php -------------------------------------------------------------------------------- /classes/local/templaterule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/local/templaterule.php -------------------------------------------------------------------------------- /classes/message_controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/message_controller.php -------------------------------------------------------------------------------- /classes/mybookings_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/mybookings_table.php -------------------------------------------------------------------------------- /classes/observer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/observer.php -------------------------------------------------------------------------------- /classes/option/dates_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/dates_handler.php -------------------------------------------------------------------------------- /classes/option/field_base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/field_base.php -------------------------------------------------------------------------------- /classes/option/fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields.php -------------------------------------------------------------------------------- /classes/option/fields/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/actions.php -------------------------------------------------------------------------------- /classes/option/fields/addastemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/addastemplate.php -------------------------------------------------------------------------------- /classes/option/fields/address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/address.php -------------------------------------------------------------------------------- /classes/option/fields/addtocalendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/addtocalendar.php -------------------------------------------------------------------------------- /classes/option/fields/addtogroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/addtogroup.php -------------------------------------------------------------------------------- /classes/option/fields/aftercompletedtext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/aftercompletedtext.php -------------------------------------------------------------------------------- /classes/option/fields/aftersubmitaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/aftersubmitaction.php -------------------------------------------------------------------------------- /classes/option/fields/annotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/annotation.php -------------------------------------------------------------------------------- /classes/option/fields/applybookingrules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/applybookingrules.php -------------------------------------------------------------------------------- /classes/option/fields/attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/attachment.php -------------------------------------------------------------------------------- /classes/option/fields/availability.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/availability.php -------------------------------------------------------------------------------- /classes/option/fields/beforebookedtext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/beforebookedtext.php -------------------------------------------------------------------------------- /classes/option/fields/beforecompletedtext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/beforecompletedtext.php -------------------------------------------------------------------------------- /classes/option/fields/bookingclosingtime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/bookingclosingtime.php -------------------------------------------------------------------------------- /classes/option/fields/bookingopeningtime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/bookingopeningtime.php -------------------------------------------------------------------------------- /classes/option/fields/bookingoptionimage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/bookingoptionimage.php -------------------------------------------------------------------------------- /classes/option/fields/bookusers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/bookusers.php -------------------------------------------------------------------------------- /classes/option/fields/canceluntil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/canceluntil.php -------------------------------------------------------------------------------- /classes/option/fields/certificate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/certificate.php -------------------------------------------------------------------------------- /classes/option/fields/competencies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/competencies.php -------------------------------------------------------------------------------- /classes/option/fields/courseendtime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/courseendtime.php -------------------------------------------------------------------------------- /classes/option/fields/courseid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/courseid.php -------------------------------------------------------------------------------- /classes/option/fields/coursestarttime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/coursestarttime.php -------------------------------------------------------------------------------- /classes/option/fields/credits.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/credits.php -------------------------------------------------------------------------------- /classes/option/fields/customfields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/customfields.php -------------------------------------------------------------------------------- /classes/option/fields/description.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/description.php -------------------------------------------------------------------------------- /classes/option/fields/disablebookingusers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/disablebookingusers.php -------------------------------------------------------------------------------- /classes/option/fields/disablecancel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/disablecancel.php -------------------------------------------------------------------------------- /classes/option/fields/duplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/duplication.php -------------------------------------------------------------------------------- /classes/option/fields/duration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/duration.php -------------------------------------------------------------------------------- /classes/option/fields/easy_bookingclosingtime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/easy_bookingclosingtime.php -------------------------------------------------------------------------------- /classes/option/fields/easy_bookingopeningtime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/easy_bookingopeningtime.php -------------------------------------------------------------------------------- /classes/option/fields/easy_text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/easy_text.php -------------------------------------------------------------------------------- /classes/option/fields/elective.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/elective.php -------------------------------------------------------------------------------- /classes/option/fields/enrolmentstatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/enrolmentstatus.php -------------------------------------------------------------------------------- /classes/option/fields/entities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/entities.php -------------------------------------------------------------------------------- /classes/option/fields/eventslist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/eventslist.php -------------------------------------------------------------------------------- /classes/option/fields/formconfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/formconfig.php -------------------------------------------------------------------------------- /classes/option/fields/howmanyusers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/howmanyusers.php -------------------------------------------------------------------------------- /classes/option/fields/id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/id.php -------------------------------------------------------------------------------- /classes/option/fields/identifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/identifier.php -------------------------------------------------------------------------------- /classes/option/fields/institution.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/institution.php -------------------------------------------------------------------------------- /classes/option/fields/invisible.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/invisible.php -------------------------------------------------------------------------------- /classes/option/fields/json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/json.php -------------------------------------------------------------------------------- /classes/option/fields/location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/location.php -------------------------------------------------------------------------------- /classes/option/fields/maxanswers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/maxanswers.php -------------------------------------------------------------------------------- /classes/option/fields/maxoverbooking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/maxoverbooking.php -------------------------------------------------------------------------------- /classes/option/fields/minanswers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/minanswers.php -------------------------------------------------------------------------------- /classes/option/fields/moveoption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/moveoption.php -------------------------------------------------------------------------------- /classes/option/fields/multiplebookings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/multiplebookings.php -------------------------------------------------------------------------------- /classes/option/fields/notificationtext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/notificationtext.php -------------------------------------------------------------------------------- /classes/option/fields/optiondates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/optiondates.php -------------------------------------------------------------------------------- /classes/option/fields/pollurl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/pollurl.php -------------------------------------------------------------------------------- /classes/option/fields/prepare_import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/prepare_import.php -------------------------------------------------------------------------------- /classes/option/fields/price.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/price.php -------------------------------------------------------------------------------- /classes/option/fields/priceformulaadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/priceformulaadd.php -------------------------------------------------------------------------------- /classes/option/fields/priceformulamultiply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/priceformulamultiply.php -------------------------------------------------------------------------------- /classes/option/fields/priceformulaoff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/priceformulaoff.php -------------------------------------------------------------------------------- /classes/option/fields/recurringoptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/recurringoptions.php -------------------------------------------------------------------------------- /classes/option/fields/removeafterminutes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/removeafterminutes.php -------------------------------------------------------------------------------- /classes/option/fields/responsiblecontact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/responsiblecontact.php -------------------------------------------------------------------------------- /classes/option/fields/returnurl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/returnurl.php -------------------------------------------------------------------------------- /classes/option/fields/sharedplaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/sharedplaces.php -------------------------------------------------------------------------------- /classes/option/fields/shoppingcart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/shoppingcart.php -------------------------------------------------------------------------------- /classes/option/fields/subbookings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/subbookings.php -------------------------------------------------------------------------------- /classes/option/fields/teachers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/teachers.php -------------------------------------------------------------------------------- /classes/option/fields/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/template.php -------------------------------------------------------------------------------- /classes/option/fields/text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/text.php -------------------------------------------------------------------------------- /classes/option/fields/timecreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/timecreated.php -------------------------------------------------------------------------------- /classes/option/fields/timemodified.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/timemodified.php -------------------------------------------------------------------------------- /classes/option/fields/titleprefix.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/titleprefix.php -------------------------------------------------------------------------------- /classes/option/fields/waitforconfirmation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields/waitforconfirmation.php -------------------------------------------------------------------------------- /classes/option/fields_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/fields_info.php -------------------------------------------------------------------------------- /classes/option/optiondate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/optiondate.php -------------------------------------------------------------------------------- /classes/option/time_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/option/time_handler.php -------------------------------------------------------------------------------- /classes/output/actionslist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/actionslist.php -------------------------------------------------------------------------------- /classes/output/booked_users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/booked_users.php -------------------------------------------------------------------------------- /classes/output/bookingoption_changes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/bookingoption_changes.php -------------------------------------------------------------------------------- /classes/output/bookingoption_dates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/bookingoption_dates.php -------------------------------------------------------------------------------- /classes/output/bookingoption_description.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/bookingoption_description.php -------------------------------------------------------------------------------- /classes/output/bookit_button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/bookit_button.php -------------------------------------------------------------------------------- /classes/output/bookit_price.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/bookit_price.php -------------------------------------------------------------------------------- /classes/output/business_card.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/business_card.php -------------------------------------------------------------------------------- /classes/output/button_notifyme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/button_notifyme.php -------------------------------------------------------------------------------- /classes/output/campaignslist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/campaignslist.php -------------------------------------------------------------------------------- /classes/output/col_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/col_action.php -------------------------------------------------------------------------------- /classes/output/col_availableplaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/col_availableplaces.php -------------------------------------------------------------------------------- /classes/output/col_coursestarttime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/col_coursestarttime.php -------------------------------------------------------------------------------- /classes/output/col_price.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/col_price.php -------------------------------------------------------------------------------- /classes/output/col_responsiblecontacts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/col_responsiblecontacts.php -------------------------------------------------------------------------------- /classes/output/col_teacher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/col_teacher.php -------------------------------------------------------------------------------- /classes/output/col_text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/col_text.php -------------------------------------------------------------------------------- /classes/output/col_text_with_description.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/col_text_with_description.php -------------------------------------------------------------------------------- /classes/output/elective_modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/elective_modal.php -------------------------------------------------------------------------------- /classes/output/eventslist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/eventslist.php -------------------------------------------------------------------------------- /classes/output/instance_description.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/instance_description.php -------------------------------------------------------------------------------- /classes/output/mobile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/mobile.php -------------------------------------------------------------------------------- /classes/output/optiondates_only.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/optiondates_only.php -------------------------------------------------------------------------------- /classes/output/optiondates_with_entities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/optiondates_with_entities.php -------------------------------------------------------------------------------- /classes/output/page_allteachers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/page_allteachers.php -------------------------------------------------------------------------------- /classes/output/page_teacher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/page_teacher.php -------------------------------------------------------------------------------- /classes/output/prepagemodal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/prepagemodal.php -------------------------------------------------------------------------------- /classes/output/pricecategories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/pricecategories.php -------------------------------------------------------------------------------- /classes/output/renderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/renderer.php -------------------------------------------------------------------------------- /classes/output/report_edit_bookingnotes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/report_edit_bookingnotes.php -------------------------------------------------------------------------------- /classes/output/ruleslist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/ruleslist.php -------------------------------------------------------------------------------- /classes/output/semesters_holidays.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/semesters_holidays.php -------------------------------------------------------------------------------- /classes/output/signin_downloadform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/signin_downloadform.php -------------------------------------------------------------------------------- /classes/output/subbooking_timeslot_output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/subbooking_timeslot_output.php -------------------------------------------------------------------------------- /classes/output/subbookingslist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/subbookingslist.php -------------------------------------------------------------------------------- /classes/output/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/output/view.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders/address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders/address.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders/bookinglink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders/bookinglink.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders/changes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders/changes.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders/courselink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders/courselink.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders/customform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders/customform.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders/dates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders/dates.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders/department.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders/department.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders/duedate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders/duedate.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders/duration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders/duration.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders/email.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders/enddate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders/enddate.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders/endtime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders/endtime.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders/enrollink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders/enrollink.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders/eventtype.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders/eventtype.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders/firstname.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders/firstname.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders/institution.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders/institution.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders/journal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders/journal.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders/lastname.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders/lastname.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders/location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders/location.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders/participant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders/participant.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders/pollurl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders/pollurl.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders/price.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders/price.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders/qrenrollink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders/qrenrollink.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders/qrid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders/qrid.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders/qrusername.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders/qrusername.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders/semester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders/semester.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders/startdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders/startdate.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders/starttime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders/starttime.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders/status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders/status.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders/teacher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders/teacher.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders/teachers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders/teachers.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders/title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders/title.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders/username.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders/username.php -------------------------------------------------------------------------------- /classes/placeholders/placeholders_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/placeholders/placeholders_info.php -------------------------------------------------------------------------------- /classes/places.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/places.php -------------------------------------------------------------------------------- /classes/plugininfo/bookingextension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/plugininfo/bookingextension.php -------------------------------------------------------------------------------- /classes/plugininfo/bookingextension_interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/plugininfo/bookingextension_interface.php -------------------------------------------------------------------------------- /classes/potential_subscriber_selector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/potential_subscriber_selector.php -------------------------------------------------------------------------------- /classes/price.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/price.php -------------------------------------------------------------------------------- /classes/privacy/provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/privacy/provider.php -------------------------------------------------------------------------------- /classes/semester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/semester.php -------------------------------------------------------------------------------- /classes/shopping_cart/service_provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/shopping_cart/service_provider.php -------------------------------------------------------------------------------- /classes/shortcodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/shortcodes.php -------------------------------------------------------------------------------- /classes/shortcodes_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/shortcodes_handler.php -------------------------------------------------------------------------------- /classes/signinsheet/signin_pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/signinsheet/signin_pdf.php -------------------------------------------------------------------------------- /classes/signinsheet/signinsheet_generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/signinsheet/signinsheet_generator.php -------------------------------------------------------------------------------- /classes/singleton_service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/singleton_service.php -------------------------------------------------------------------------------- /classes/subbookings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/subbookings.php -------------------------------------------------------------------------------- /classes/subbookings/booking_subbooking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/subbookings/booking_subbooking.php -------------------------------------------------------------------------------- /classes/subbookings/subbookings_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/subbookings/subbookings_cache.php -------------------------------------------------------------------------------- /classes/subbookings/subbookings_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/subbookings/subbookings_info.php -------------------------------------------------------------------------------- /classes/subscriber_selector_base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/subscriber_selector_base.php -------------------------------------------------------------------------------- /classes/table/booking_history_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/table/booking_history_table.php -------------------------------------------------------------------------------- /classes/table/bookingoptions_simple_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/table/bookingoptions_simple_table.php -------------------------------------------------------------------------------- /classes/table/bookingoptions_wbtable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/table/bookingoptions_wbtable.php -------------------------------------------------------------------------------- /classes/table/bulkoperations_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/table/bulkoperations_table.php -------------------------------------------------------------------------------- /classes/table/event_log_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/table/event_log_table.php -------------------------------------------------------------------------------- /classes/table/instancetemplatessettings_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/table/instancetemplatessettings_table.php -------------------------------------------------------------------------------- /classes/table/manageusers_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/table/manageusers_table.php -------------------------------------------------------------------------------- /classes/table/optiondates_teachers_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/table/optiondates_teachers_table.php -------------------------------------------------------------------------------- /classes/table/optiontemplatessettings_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/table/optiontemplatessettings_table.php -------------------------------------------------------------------------------- /classes/table/teacher_performed_units_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/table/teacher_performed_units_table.php -------------------------------------------------------------------------------- /classes/table/teachers_instance_report_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/table/teachers_instance_report_table.php -------------------------------------------------------------------------------- /classes/task/assign_competency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/task/assign_competency.php -------------------------------------------------------------------------------- /classes/task/check_answers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/task/check_answers.php -------------------------------------------------------------------------------- /classes/task/clean_booking_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/task/clean_booking_db.php -------------------------------------------------------------------------------- /classes/task/enrol_bookedusers_tocourse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/task/enrol_bookedusers_tocourse.php -------------------------------------------------------------------------------- /classes/task/purge_campaign_caches.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/task/purge_campaign_caches.php -------------------------------------------------------------------------------- /classes/task/recalculate_prices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/task/recalculate_prices.php -------------------------------------------------------------------------------- /classes/task/remove_activity_completion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/task/remove_activity_completion.php -------------------------------------------------------------------------------- /classes/task/send_completion_mails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/task/send_completion_mails.php -------------------------------------------------------------------------------- /classes/task/send_confirmation_mails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/task/send_confirmation_mails.php -------------------------------------------------------------------------------- /classes/task/send_mail_by_rule_adhoc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/task/send_mail_by_rule_adhoc.php -------------------------------------------------------------------------------- /classes/task/send_notification_mails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/task/send_notification_mails.php -------------------------------------------------------------------------------- /classes/task/send_reminder_mails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/task/send_reminder_mails.php -------------------------------------------------------------------------------- /classes/teachers_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/teachers_handler.php -------------------------------------------------------------------------------- /classes/utils/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/utils/db.php -------------------------------------------------------------------------------- /classes/utils/wb_payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/utils/wb_payment.php -------------------------------------------------------------------------------- /classes/utils/webservice_import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/classes/utils/webservice_import.php -------------------------------------------------------------------------------- /confirmactivity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/confirmactivity.php -------------------------------------------------------------------------------- /customfield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/customfield.php -------------------------------------------------------------------------------- /customfieldsettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/customfieldsettings.php -------------------------------------------------------------------------------- /db/access.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/db/access.php -------------------------------------------------------------------------------- /db/caches.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/db/caches.php -------------------------------------------------------------------------------- /db/events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/db/events.php -------------------------------------------------------------------------------- /db/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/db/install.php -------------------------------------------------------------------------------- /db/install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/db/install.xml -------------------------------------------------------------------------------- /db/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/db/log.php -------------------------------------------------------------------------------- /db/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/db/messages.php -------------------------------------------------------------------------------- /db/mobile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/db/mobile.php -------------------------------------------------------------------------------- /db/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/db/services.php -------------------------------------------------------------------------------- /db/shortcodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/db/shortcodes.php -------------------------------------------------------------------------------- /db/subplugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/db/subplugins.json -------------------------------------------------------------------------------- /db/tasks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/db/tasks.php -------------------------------------------------------------------------------- /db/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/db/upgrade.php -------------------------------------------------------------------------------- /db/upgradelib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/db/upgradelib.php -------------------------------------------------------------------------------- /download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/download.php -------------------------------------------------------------------------------- /download_optiondates_teachers_report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/download_optiondates_teachers_report.php -------------------------------------------------------------------------------- /download_report2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/download_report2.php -------------------------------------------------------------------------------- /edit_campaigns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/edit_campaigns.php -------------------------------------------------------------------------------- /edit_optiontemplates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/edit_optiontemplates.php -------------------------------------------------------------------------------- /edit_rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/edit_rules.php -------------------------------------------------------------------------------- /editoptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/editoptions.php -------------------------------------------------------------------------------- /enrollink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/enrollink.php -------------------------------------------------------------------------------- /importexcel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/importexcel.php -------------------------------------------------------------------------------- /importexcel_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/importexcel_form.php -------------------------------------------------------------------------------- /importoptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/importoptions.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/index.php -------------------------------------------------------------------------------- /instancetemplateadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/instancetemplateadd.php -------------------------------------------------------------------------------- /instancetemplatessettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/instancetemplatessettings.php -------------------------------------------------------------------------------- /lang/de/booking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/lang/de/booking.php -------------------------------------------------------------------------------- /lang/en/booking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/lang/en/booking.php -------------------------------------------------------------------------------- /lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/lib.php -------------------------------------------------------------------------------- /link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/link.php -------------------------------------------------------------------------------- /locallib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/locallib.php -------------------------------------------------------------------------------- /mod_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/mod_form.php -------------------------------------------------------------------------------- /moveoption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/moveoption.php -------------------------------------------------------------------------------- /mybookings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/mybookings.php -------------------------------------------------------------------------------- /option_date_template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/option_date_template.php -------------------------------------------------------------------------------- /optiondates_teachers_report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/optiondates_teachers_report.php -------------------------------------------------------------------------------- /optionformconfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/optionformconfig.php -------------------------------------------------------------------------------- /optiontemplatessettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/optiontemplatessettings.php -------------------------------------------------------------------------------- /optionview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/optionview.php -------------------------------------------------------------------------------- /otherbooking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/otherbooking.php -------------------------------------------------------------------------------- /otherbookingaddrule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/otherbookingaddrule.php -------------------------------------------------------------------------------- /otherbookingaddrule_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/otherbookingaddrule_form.php -------------------------------------------------------------------------------- /pix/column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/pix/column.png -------------------------------------------------------------------------------- /pix/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/pix/icon.png -------------------------------------------------------------------------------- /pix/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/pix/icon.svg -------------------------------------------------------------------------------- /pix/wb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/pix/wb-logo.png -------------------------------------------------------------------------------- /pricecategories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/pricecategories.php -------------------------------------------------------------------------------- /rating_rest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/rating_rest.php -------------------------------------------------------------------------------- /recalculateprices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/recalculateprices.php -------------------------------------------------------------------------------- /report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/report.php -------------------------------------------------------------------------------- /report2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/report2.php -------------------------------------------------------------------------------- /semesters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/semesters.php -------------------------------------------------------------------------------- /sendmessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/sendmessage.php -------------------------------------------------------------------------------- /sendmessageform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/sendmessageform.class.php -------------------------------------------------------------------------------- /settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/settings.php -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/styles.css -------------------------------------------------------------------------------- /subbooking_timetabletest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/subbooking_timetabletest.php -------------------------------------------------------------------------------- /subscribeusers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/subscribeusers.php -------------------------------------------------------------------------------- /subscribeusersactivity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/subscribeusersactivity.php -------------------------------------------------------------------------------- /tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tag.php -------------------------------------------------------------------------------- /tagtemplates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tagtemplates.php -------------------------------------------------------------------------------- /tagtemplatesadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tagtemplatesadd.php -------------------------------------------------------------------------------- /tagtemplatesadd_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tagtemplatesadd_form.php -------------------------------------------------------------------------------- /teacher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/teacher.php -------------------------------------------------------------------------------- /teacher_performed_units_report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/teacher_performed_units_report.php -------------------------------------------------------------------------------- /teachers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/teachers.php -------------------------------------------------------------------------------- /teachers_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/teachers_form.php -------------------------------------------------------------------------------- /teachers_instance_report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/teachers_instance_report.php -------------------------------------------------------------------------------- /templates/booked_user.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/booked_user.mustache -------------------------------------------------------------------------------- /templates/booked_users.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/booked_users.mustache -------------------------------------------------------------------------------- /templates/bookingactions/boactionslist.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/bookingactions/boactionslist.mustache -------------------------------------------------------------------------------- /templates/bookingoption_changes.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/bookingoption_changes.mustache -------------------------------------------------------------------------------- /templates/bookingoption_dates.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/bookingoption_dates.mustache -------------------------------------------------------------------------------- /templates/bookingoption_description.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/bookingoption_description.mustache -------------------------------------------------------------------------------- /templates/bookingoption_description_ical.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/bookingoption_description_ical.mustache -------------------------------------------------------------------------------- /templates/bookingoption_description_mail.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/bookingoption_description_mail.mustache -------------------------------------------------------------------------------- /templates/bookingoption_description_view.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/bookingoption_description_view.mustache -------------------------------------------------------------------------------- /templates/bookingpage/footer.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/bookingpage/footer.mustache -------------------------------------------------------------------------------- /templates/bookingpage/header.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/bookingpage/header.mustache -------------------------------------------------------------------------------- /templates/bookingpage/prepagebody.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/bookingpage/prepagebody.mustache -------------------------------------------------------------------------------- /templates/bookingpage/prepageinline.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/bookingpage/prepageinline.mustache -------------------------------------------------------------------------------- /templates/bookingpage/prepagemodal.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/bookingpage/prepagemodal.mustache -------------------------------------------------------------------------------- /templates/bookit_button.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/bookit_button.mustache -------------------------------------------------------------------------------- /templates/bookit_price.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/bookit_price.mustache -------------------------------------------------------------------------------- /templates/business_card.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/business_card.mustache -------------------------------------------------------------------------------- /templates/button_notifyme.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/button_notifyme.mustache -------------------------------------------------------------------------------- /templates/campaignslist.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/campaignslist.mustache -------------------------------------------------------------------------------- /templates/col_action.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/col_action.mustache -------------------------------------------------------------------------------- /templates/col_availableplaces.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/col_availableplaces.mustache -------------------------------------------------------------------------------- /templates/col_coursestarttime.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/col_coursestarttime.mustache -------------------------------------------------------------------------------- /templates/col_price.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/col_price.mustache -------------------------------------------------------------------------------- /templates/col_responsiblecontact.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/col_responsiblecontact.mustache -------------------------------------------------------------------------------- /templates/col_teacher.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/col_teacher.mustache -------------------------------------------------------------------------------- /templates/col_text.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/col_text.mustache -------------------------------------------------------------------------------- /templates/col_text_with_description.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/col_text_with_description.mustache -------------------------------------------------------------------------------- /templates/condition/bookingpolicy.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/condition/bookingpolicy.mustache -------------------------------------------------------------------------------- /templates/condition/confirmation.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/condition/confirmation.mustache -------------------------------------------------------------------------------- /templates/condition/customform.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/condition/customform.mustache -------------------------------------------------------------------------------- /templates/deputydisplay.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/deputydisplay.mustache -------------------------------------------------------------------------------- /templates/deputyselect.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/deputyselect.mustache -------------------------------------------------------------------------------- /templates/edit_bookingnotes.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/edit_bookingnotes.mustache -------------------------------------------------------------------------------- /templates/elective/component_elective.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/elective/component_elective.mustache -------------------------------------------------------------------------------- /templates/enrollink.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/enrollink.mustache -------------------------------------------------------------------------------- /templates/eventslist.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/eventslist.mustache -------------------------------------------------------------------------------- /templates/form-user-selector-suggestion.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/form-user-selector-suggestion.mustache -------------------------------------------------------------------------------- /templates/instance_description.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/instance_description.mustache -------------------------------------------------------------------------------- /templates/mobile/ionform/advcheckbox.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/mobile/ionform/advcheckbox.mustache -------------------------------------------------------------------------------- /templates/mobile/ionform/select.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/mobile/ionform/select.mustache -------------------------------------------------------------------------------- /templates/mobile/ionform/shorttext.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/mobile/ionform/shorttext.mustache -------------------------------------------------------------------------------- /templates/mobile/ionform/static.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/mobile/ionform/static.mustache -------------------------------------------------------------------------------- /templates/mobile/mobile_bookit_button.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/mobile/mobile_bookit_button.mustache -------------------------------------------------------------------------------- /templates/mobile/mobile_details_button.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/mobile/mobile_details_button.mustache -------------------------------------------------------------------------------- /templates/mobile/mobile_mybookings_list.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/mobile/mobile_mybookings_list.mustache -------------------------------------------------------------------------------- /templates/mobile/mobile_view_page.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/mobile/mobile_view_page.mustache -------------------------------------------------------------------------------- /templates/option/option_collapsible_open.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/option/option_collapsible_open.mustache -------------------------------------------------------------------------------- /templates/optiondates_extrainfo.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/optiondates_extrainfo.mustache -------------------------------------------------------------------------------- /templates/optiondates_for_placeholder.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/optiondates_for_placeholder.mustache -------------------------------------------------------------------------------- /templates/optiondates_only.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/optiondates_only.mustache -------------------------------------------------------------------------------- /templates/optiondates_with_entities.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/optiondates_with_entities.mustache -------------------------------------------------------------------------------- /templates/optiondatesteacherstable_list.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/optiondatesteacherstable_list.mustache -------------------------------------------------------------------------------- /templates/page_allteachers.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/page_allteachers.mustache -------------------------------------------------------------------------------- /templates/page_teacher.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/page_teacher.mustache -------------------------------------------------------------------------------- /templates/pricecategories.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/pricecategories.mustache -------------------------------------------------------------------------------- /templates/recalculateprices.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/recalculateprices.mustache -------------------------------------------------------------------------------- /templates/report/navigation_dropdown.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/report/navigation_dropdown.mustache -------------------------------------------------------------------------------- /templates/report/option.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/report/option.mustache -------------------------------------------------------------------------------- /templates/ruleslist.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/ruleslist.mustache -------------------------------------------------------------------------------- /templates/semesters_holidays.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/semesters_holidays.mustache -------------------------------------------------------------------------------- /templates/settings/optionformconfig.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/settings/optionformconfig.mustache -------------------------------------------------------------------------------- /templates/shortcodes_table.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/shortcodes_table.mustache -------------------------------------------------------------------------------- /templates/signin_downloadform.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/signin_downloadform.mustache -------------------------------------------------------------------------------- /templates/subbooking/additionalitem.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/subbooking/additionalitem.mustache -------------------------------------------------------------------------------- /templates/subbooking/additionalperson.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/subbooking/additionalperson.mustache -------------------------------------------------------------------------------- /templates/subbooking/timeslottable.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/subbooking/timeslottable.mustache -------------------------------------------------------------------------------- /templates/subbookingslist.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/subbookingslist.mustache -------------------------------------------------------------------------------- /templates/table_cards.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/table_cards.mustache -------------------------------------------------------------------------------- /templates/table_cards_container.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/table_cards_container.mustache -------------------------------------------------------------------------------- /templates/table_cards_row.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/table_cards_row.mustache -------------------------------------------------------------------------------- /templates/table_list.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/table_list.mustache -------------------------------------------------------------------------------- /templates/table_list_container.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/table_list_container.mustache -------------------------------------------------------------------------------- /templates/table_list_row.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/table_list_row.mustache -------------------------------------------------------------------------------- /templates/view.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/templates/view.mustache -------------------------------------------------------------------------------- /tests/backup/backup_restore_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/backup/backup_restore_test.php -------------------------------------------------------------------------------- /tests/behat/behat_mod_booking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/behat_mod_booking.php -------------------------------------------------------------------------------- /tests/behat/booking_add_and_book_option.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_add_and_book_option.feature -------------------------------------------------------------------------------- /tests/behat/booking_availability.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_availability.feature -------------------------------------------------------------------------------- /tests/behat/booking_book_cancel_option.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_book_cancel_option.feature -------------------------------------------------------------------------------- /tests/behat/booking_book_policy_setting.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_book_policy_setting.feature -------------------------------------------------------------------------------- /tests/behat/booking_bulkoperations.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_bulkoperations.feature -------------------------------------------------------------------------------- /tests/behat/booking_campaigns.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_campaigns.feature -------------------------------------------------------------------------------- /tests/behat/booking_campaigns2.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_campaigns2.feature -------------------------------------------------------------------------------- /tests/behat/booking_campaigns3.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_campaigns3.feature -------------------------------------------------------------------------------- /tests/behat/booking_contact_persons.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_contact_persons.feature -------------------------------------------------------------------------------- /tests/behat/booking_courseconnection.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_courseconnection.feature -------------------------------------------------------------------------------- /tests/behat/booking_create_template.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_create_template.feature -------------------------------------------------------------------------------- /tests/behat/booking_delete.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_delete.feature -------------------------------------------------------------------------------- /tests/behat/booking_edit_setting.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_edit_setting.feature -------------------------------------------------------------------------------- /tests/behat/booking_edit_setting_new_tab.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_edit_setting_new_tab.feature -------------------------------------------------------------------------------- /tests/behat/booking_enrolllink.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_enrolllink.feature -------------------------------------------------------------------------------- /tests/behat/booking_history.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_history.feature -------------------------------------------------------------------------------- /tests/behat/booking_installments.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_installments.feature -------------------------------------------------------------------------------- /tests/behat/booking_instance_manage.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_instance_manage.feature -------------------------------------------------------------------------------- /tests/behat/booking_list_filtering.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_list_filtering.feature -------------------------------------------------------------------------------- /tests/behat/booking_manage_entities.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_manage_entities.feature -------------------------------------------------------------------------------- /tests/behat/booking_manage_waiting_list.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_manage_waiting_list.feature -------------------------------------------------------------------------------- /tests/behat/booking_maxoptionforcategory.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_maxoptionforcategory.feature -------------------------------------------------------------------------------- /tests/behat/booking_messages.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_messages.feature -------------------------------------------------------------------------------- /tests/behat/booking_navigation_setting.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_navigation_setting.feature -------------------------------------------------------------------------------- /tests/behat/booking_option_actions.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_option_actions.feature -------------------------------------------------------------------------------- /tests/behat/booking_payment_account.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_payment_account.feature -------------------------------------------------------------------------------- /tests/behat/booking_price_formula.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_price_formula.feature -------------------------------------------------------------------------------- /tests/behat/booking_pricecancelation.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_pricecancelation.feature -------------------------------------------------------------------------------- /tests/behat/booking_prices.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_prices.feature -------------------------------------------------------------------------------- /tests/behat/booking_recurring_option.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_recurring_option.feature -------------------------------------------------------------------------------- /tests/behat/booking_rules.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_rules.feature -------------------------------------------------------------------------------- /tests/behat/booking_self_learning_course.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_self_learning_course.feature -------------------------------------------------------------------------------- /tests/behat/booking_semesters.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_semesters.feature -------------------------------------------------------------------------------- /tests/behat/booking_subbooking.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_subbooking.feature -------------------------------------------------------------------------------- /tests/behat/booking_teachers.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/behat/booking_teachers.feature -------------------------------------------------------------------------------- /tests/bo_actions/booking_action_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/bo_actions/booking_action_test.php -------------------------------------------------------------------------------- /tests/bo_availability/condition_all_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/bo_availability/condition_all_test.php -------------------------------------------------------------------------------- /tests/booking_answers/booking_answers_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/booking_answers/booking_answers_test.php -------------------------------------------------------------------------------- /tests/booking_course_connection_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/booking_course_connection_test.php -------------------------------------------------------------------------------- /tests/booking_groupenrolment_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/booking_groupenrolment_test.php -------------------------------------------------------------------------------- /tests/booking_option_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/booking_option_test.php -------------------------------------------------------------------------------- /tests/booking_options_fields/moveoption_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/booking_options_fields/moveoption_test.php -------------------------------------------------------------------------------- /tests/booking_rules/rules_enrollink_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/booking_rules/rules_enrollink_test.php -------------------------------------------------------------------------------- /tests/booking_rules/rules_n_days_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/booking_rules/rules_n_days_test.php -------------------------------------------------------------------------------- /tests/booking_rules/rules_override_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/booking_rules/rules_override_test.php -------------------------------------------------------------------------------- /tests/booking_rules/rules_template_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/booking_rules/rules_template_test.php -------------------------------------------------------------------------------- /tests/booking_rules/rules_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/booking_rules/rules_test.php -------------------------------------------------------------------------------- /tests/booking_rules/rules_waitinglist_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/booking_rules/rules_waitinglist_test.php -------------------------------------------------------------------------------- /tests/bookinghistory_presence_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/bookinghistory_presence_test.php -------------------------------------------------------------------------------- /tests/bookinghistory_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/bookinghistory_test.php -------------------------------------------------------------------------------- /tests/bookingoption_filter_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/bookingoption_filter_test.php -------------------------------------------------------------------------------- /tests/bookitbutton/bookitbutton_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/bookitbutton/bookitbutton_test.php -------------------------------------------------------------------------------- /tests/certificates/certificate_presence_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/certificates/certificate_presence_test.php -------------------------------------------------------------------------------- /tests/checkanswers/checkanswers_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/checkanswers/checkanswers_test.php -------------------------------------------------------------------------------- /tests/checklist_generator_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/checklist_generator_test.php -------------------------------------------------------------------------------- /tests/circumvent_userprofilecondition_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/circumvent_userprofilecondition_test.php -------------------------------------------------------------------------------- /tests/competency_test/competency_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/competency_test/competency_test.php -------------------------------------------------------------------------------- /tests/confirmation/confirmation_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/confirmation/confirmation_test.php -------------------------------------------------------------------------------- /tests/confirmation/waitinglist_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/confirmation/waitinglist_test.php -------------------------------------------------------------------------------- /tests/course_completion_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/course_completion_test.php -------------------------------------------------------------------------------- /tests/event/events_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/event/events_test.php -------------------------------------------------------------------------------- /tests/fixtures/options_coma_new00.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/fixtures/options_coma_new00.csv -------------------------------------------------------------------------------- /tests/fixtures/options_coma_new01.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/fixtures/options_coma_new01.csv -------------------------------------------------------------------------------- /tests/fixtures/options_coma_new02.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/fixtures/options_coma_new02.csv -------------------------------------------------------------------------------- /tests/generator/behat_mod_booking_generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/generator/behat_mod_booking_generator.php -------------------------------------------------------------------------------- /tests/generator/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/generator/lib.php -------------------------------------------------------------------------------- /tests/ical/ical_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/ical/ical_test.php -------------------------------------------------------------------------------- /tests/importer/booking_importer_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/importer/booking_importer_test.php -------------------------------------------------------------------------------- /tests/lib_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/lib_test.php -------------------------------------------------------------------------------- /tests/multiple_bookings/booking_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/multiple_bookings/booking_test.php -------------------------------------------------------------------------------- /tests/optiondates/optiondate_answer_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/optiondates/optiondate_answer_test.php -------------------------------------------------------------------------------- /tests/settings/optionformconfig_info_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/settings/optionformconfig_info_test.php -------------------------------------------------------------------------------- /tests/shopping_cart/shopping_cart_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/shopping_cart/shopping_cart_test.php -------------------------------------------------------------------------------- /tests/shortcodes/allbookingoptions_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/shortcodes/allbookingoptions_test.php -------------------------------------------------------------------------------- /tests/shortcodes/bulkoperations_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/shortcodes/bulkoperations_test.php -------------------------------------------------------------------------------- /tests/shortcodes/cfincludeandcustomfield_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/shortcodes/cfincludeandcustomfield_test.php -------------------------------------------------------------------------------- /tests/shortcodes/courselist_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/shortcodes/courselist_test.php -------------------------------------------------------------------------------- /tests/shortcodes/linkbacktocourse_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/shortcodes/linkbacktocourse_test.php -------------------------------------------------------------------------------- /tests/shortcodes/mycourselist_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/shortcodes/mycourselist_test.php -------------------------------------------------------------------------------- /tests/shortcodes/recommendedin_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/shortcodes/recommendedin_test.php -------------------------------------------------------------------------------- /tests/task/send_reminder_mails_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/tests/task/send_reminder_mails_test.php -------------------------------------------------------------------------------- /thirdpartylibs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/thirdpartylibs.xml -------------------------------------------------------------------------------- /unsubscribe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/unsubscribe.php -------------------------------------------------------------------------------- /version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/version.php -------------------------------------------------------------------------------- /view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/view.php -------------------------------------------------------------------------------- /viewconfirmation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/viewconfirmation.php -------------------------------------------------------------------------------- /viewpolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/viewpolicy.php -------------------------------------------------------------------------------- /vue3/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/.babelrc -------------------------------------------------------------------------------- /vue3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/README.md -------------------------------------------------------------------------------- /vue3/amd/build/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/amd/build/main.js -------------------------------------------------------------------------------- /vue3/amd/build/vue-3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/amd/build/vue-3.css -------------------------------------------------------------------------------- /vue3/components/BookingDashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/components/BookingDashboard.vue -------------------------------------------------------------------------------- /vue3/components/FilterSearchbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/components/FilterSearchbar.vue -------------------------------------------------------------------------------- /vue3/components/NotFound.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/components/NotFound.vue -------------------------------------------------------------------------------- /vue3/components/dashboard/BookingStats.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/components/dashboard/BookingStats.vue -------------------------------------------------------------------------------- /vue3/components/dashboard/ConfigForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/components/dashboard/ConfigForm.vue -------------------------------------------------------------------------------- /vue3/components/dashboard/StatisticsView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/components/dashboard/StatisticsView.vue -------------------------------------------------------------------------------- /vue3/components/dashboard/TabInformation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/components/dashboard/TabInformation.vue -------------------------------------------------------------------------------- /vue3/components/helper/CapabilityButtons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/components/helper/CapabilityButtons.vue -------------------------------------------------------------------------------- /vue3/components/helper/CapabilityOptions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/components/helper/CapabilityOptions.vue -------------------------------------------------------------------------------- /vue3/components/helper/SkeletonContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/components/helper/SkeletonContent.vue -------------------------------------------------------------------------------- /vue3/components/helper/SkeletonTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/components/helper/SkeletonTab.vue -------------------------------------------------------------------------------- /vue3/components/helper/SubLists.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/components/helper/SubLists.vue -------------------------------------------------------------------------------- /vue3/components/modal/ConfirmationModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/components/modal/ConfirmationModal.vue -------------------------------------------------------------------------------- /vue3/coverage/lcov-report/SkeletonTab.vue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/coverage/lcov-report/SkeletonTab.vue.html -------------------------------------------------------------------------------- /vue3/coverage/lcov-report/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/coverage/lcov-report/base.css -------------------------------------------------------------------------------- /vue3/coverage/lcov-report/block-navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/coverage/lcov-report/block-navigation.js -------------------------------------------------------------------------------- /vue3/coverage/lcov-report/charthelper/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/coverage/lcov-report/charthelper/index.html -------------------------------------------------------------------------------- /vue3/coverage/lcov-report/components/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/coverage/lcov-report/components/index.html -------------------------------------------------------------------------------- /vue3/coverage/lcov-report/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/coverage/lcov-report/favicon.png -------------------------------------------------------------------------------- /vue3/coverage/lcov-report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/coverage/lcov-report/index.html -------------------------------------------------------------------------------- /vue3/coverage/lcov-report/nodes_items/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/coverage/lcov-report/nodes_items/index.html -------------------------------------------------------------------------------- /vue3/coverage/lcov-report/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/coverage/lcov-report/prettify.css -------------------------------------------------------------------------------- /vue3/coverage/lcov-report/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/coverage/lcov-report/prettify.js -------------------------------------------------------------------------------- /vue3/coverage/lcov-report/sort-arrow-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/coverage/lcov-report/sort-arrow-sprite.png -------------------------------------------------------------------------------- /vue3/coverage/lcov-report/sorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/coverage/lcov-report/sorter.js -------------------------------------------------------------------------------- /vue3/coverage/lcov-report/tests/mocks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/coverage/lcov-report/tests/mocks/index.html -------------------------------------------------------------------------------- /vue3/coverage/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/coverage/lcov.info -------------------------------------------------------------------------------- /vue3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/index.html -------------------------------------------------------------------------------- /vue3/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/jest.config.js -------------------------------------------------------------------------------- /vue3/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/main.js -------------------------------------------------------------------------------- /vue3/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/package-lock.json -------------------------------------------------------------------------------- /vue3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/package.json -------------------------------------------------------------------------------- /vue3/router/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/router/router.js -------------------------------------------------------------------------------- /vue3/scss/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/scss/custom.scss -------------------------------------------------------------------------------- /vue3/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/store.js -------------------------------------------------------------------------------- /vue3/tests/mocks/mockStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/tests/mocks/mockStore.js -------------------------------------------------------------------------------- /vue3/tests/unit/BertaDashboard.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/tests/unit/BertaDashboard.spec.js -------------------------------------------------------------------------------- /vue3/tests/unit/Searchbar.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/tests/unit/Searchbar.spec.js -------------------------------------------------------------------------------- /vue3/tests/unit/helper/CapabilityButtons.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/tests/unit/helper/CapabilityButtons.spec.js -------------------------------------------------------------------------------- /vue3/tests/unit/helper/CapabilityOptions.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/tests/unit/helper/CapabilityOptions.spec.js -------------------------------------------------------------------------------- /vue3/tests/unit/helper/FilterSkeletonTab.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/tests/unit/helper/FilterSkeletonTab.spec.js -------------------------------------------------------------------------------- /vue3/tests/unit/helper/SkeletonContent.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/tests/unit/helper/SkeletonContent.spec.js -------------------------------------------------------------------------------- /vue3/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/vite.config.js -------------------------------------------------------------------------------- /vue3/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wunderbyte-GmbH/moodle-mod_booking/HEAD/vue3/webpack.config.js --------------------------------------------------------------------------------