Skip to content

Commit

Permalink
Add Berta plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
mona-shakiba committed Oct 16, 2024
1 parent de8cac6 commit 85f6dfc
Show file tree
Hide file tree
Showing 18 changed files with 55 additions and 17 deletions.
48 changes: 39 additions & 9 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
[submodule "mod/booking"]
path = mod/booking
url = https://github.com/Wunderbyte-GmbH/moodle-mod_booking.git
branch = feature_berta
branch = urise
[submodule "auth/saml2"]
path = auth/saml2
url = https://github.com/Wunderbyte-GmbH/moodle-auth_saml2.git
branch = MOODLE_39_STABLE
[submodule "local/wunderbyte_table"]
path = local/wunderbyte_table
url = https://github.com/Wunderbyte-GmbH/moodle-local_wunderbyte_table.git
branch = USI
branch = urise
[submodule "customfield/field/dynamic"]
path = customfield/field/dynamic
url = https://github.com/soorajsingh/moodle-customfield_dynamic.git
branch = master
[submodule "local/entities"]
path = local/entities
url = https://github.com/Wunderbyte-GmbH/moodle-local_entities.git
branch = USI
branch = urise
[submodule "local/shopping_cart"]
path = local/shopping_cart
url = https://github.com/Wunderbyte-GmbH/moodle-local_shopping_cart.git
branch = USI
branch = urise
[submodule "payment/gateway/payunity"]
path = payment/gateway/payunity
url = https://github.com/Wunderbyte-GmbH/moodle-payment_gw_payunity.git
Expand All @@ -37,13 +37,43 @@
[submodule "filter/shortcodes"]
path = filter/shortcodes
url = https://github.com/branchup/moodle-filter_shortcodes.git
[submodule "local/berta"]
path = local/berta
url = [email protected]:Wunderbyte-GmbH/moodle_local_berta.git
branch = berta
[submodule "local/urise"]
path = local/urise
url = [email protected]:Wunderbyte-GmbH/moodle_local_urise.git
branch = urise
[submodule "theme/lexa"]
path = theme/lexa
url = https://github.com/Wunderbyte-GmbH/Moodle-theme_lexa.git
url = https://github.com/Wunderbyte-GmbH/moodle-theme_lexa.git
[submodule "theme/boost_union"]
path = theme/boost_union
url = https://github.com/moodle-an-hochschulen/moodle-theme_boost_union
branch = MOODLE_403_STABLE
[submodule "filter/filtercodes"]
path = filter/filtercodes
url = [email protected]:michael-milette/moodle-filter_filtercodes.git
[submodule "local/wb_news"]
path = local/wb_news
url = https://github.com/Wunderbyte-GmbH/moodle-local_wb_news.git
[submodule "payment/gateway/payone"]
path = payment/gateway/payone
url = [email protected]:Wunderbyte-GmbH/moodle-paygw_payone.git
branch = urise
[submodule "customfield/field/dynamicformat"]
path = customfield/field/dynamicformat
url = [email protected]:Wunderbyte-GmbH/moodle-customfield_dynamicformat.git
branch = main
[submodule "customfield/field/textformat"]
path = customfield/field/textformat
url = [email protected]:Wunderbyte-GmbH/moodle-customfield_textformat.git
branch = master
[submodule "local/wb_faq"]
path = local/wb_faq
url = https://github.com/Wunderbyte-GmbH/moodle-local_wb_faq.git
branch = main
[submodule "customfield/field/textregex"]
path = customfield/field/textregex
url = https://github.com/benyovszky/moodle-customfield_textregex.git
[submodule "mod/organizer"]
path = mod/organizer
url = [email protected]:academic-moodle-cooperation/moodle-mod_organizer.git
branch = MOODLE_403_STABLE
2 changes: 1 addition & 1 deletion auth/saml2
Submodule saml2 updated 5830 files
1 change: 1 addition & 0 deletions customfield/field/dynamicformat
Submodule dynamicformat added at 6e738d
1 change: 1 addition & 0 deletions customfield/field/textformat
Submodule textformat added at abe926
1 change: 1 addition & 0 deletions customfield/field/textregex
Submodule textregex added at e9461e
1 change: 1 addition & 0 deletions filter/filtercodes
Submodule filtercodes added at 4ca6a2
1 change: 0 additions & 1 deletion local/berta
Submodule berta deleted from 4d10be
2 changes: 1 addition & 1 deletion local/shopping_cart
Submodule shopping_cart updated 90 files
+66 −0 .github/workflows/moodle-release.yml
+71 −1 CHANGES.md
+1 −1 amd/build/cart.min.js
+1 −1 amd/build/cart.min.js.map
+1 −1 amd/build/cashier.min.js
+1 −1 amd/build/cashier.min.js.map
+1 −6 amd/build/shistory.min.js
+1 −1 amd/build/shistory.min.js.map
+58 −14 amd/src/cart.js
+1 −1 amd/src/cashier.js
+135 −3 amd/src/shistory.js
+25 −40 checkout.php
+1 −1 classes/event/payment_added.php
+3 −3 classes/external/add_item_to_cart.php
+1 −1 classes/external/cancel_purchase.php
+14 −1 classes/external/delete_item_from_cart.php
+167 −0 classes/external/get_history_item.php
+28 −6 classes/external/get_price.php
+9 −4 classes/external/get_shopping_cart_items.php
+113 −0 classes/external/mark_for_rebooking.php
+11 −10 classes/form/modal_add_discount_to_item.php
+1 −3 classes/form/modal_cancel_all_addcredit.php
+3 −8 classes/form/modal_creditsmanager.php
+688 −0 classes/local/cartstore.php
+21 −1 classes/local/entities/cartitem.php
+37 −0 classes/local/pricemodifier/modifier_base.php
+63 −0 classes/local/pricemodifier/modifier_info.php
+119 −0 classes/local/pricemodifier/modifiers/checkout.php
+116 −0 classes/local/pricemodifier/modifiers/credits.php
+261 −0 classes/local/pricemodifier/modifiers/installments.php
+86 −0 classes/local/pricemodifier/modifiers/standard.php
+75 −0 classes/local/pricemodifier/modifiers/taxes.php
+64 −0 classes/local/pricemodifier/modifiers/termsandconditions.php
+118 −0 classes/local/rebookings.php
+6 −4 classes/output/cashier.php
+161 −0 classes/output/installments.php
+29 −5 classes/output/shoppingcart_history_list.php
+1 −2 classes/payment/service_provider.php
+293 −479 classes/shopping_cart.php
+147 −2 classes/shopping_cart/service_provider.php
+5 −0 classes/shopping_cart_bookingfee.php
+17 −21 classes/shopping_cart_credits.php
+369 −0 classes/shopping_cart_handler.php
+286 −61 classes/shopping_cart_history.php
+174 −10 classes/shopping_cart_rebookingcredit.php
+5 −1 classes/table/cash_report_table.php
+182 −0 classes/table/installments_table.php
+31 −2 daily_sums_pdf.php
+8 −2 db/caches.php
+22 −0 db/install.xml
+14 −1 db/services.php
+84 −0 db/upgrade.php
+36 −10 demo.php
+15 −0 download_cash_report.php
+4 −1 history.php
+56 −0 installments.php
+74 −7 lang/de/local_shopping_cart.php
+140 −3 lang/en/local_shopping_cart.php
+32 −5 lib.php
+ pix/rebook.png
+ pix/rebookingcredit.png
+1 −1 receipt.php
+16 −12 report.php
+102 −0 settings.php
+42 −16 styles.css
+4 −2 templates/addtocartdb.mustache
+1 −1 templates/addtocartdb_priceonly.mustache
+81 −0 templates/button_cancel.mustache
+2 −2 templates/cashier.mustache
+18 −12 templates/checkout.mustache
+1 −1 templates/credit_item.mustache
+12 −7 templates/history_item.mustache
+60 −0 templates/pages/installments.mustache
+1 −0 templates/payment_region.mustache
+50 −19 templates/price_label.mustache
+9 −4 templates/shopping_cart_item.mustache
+5 −5 templates/shopping_cart_items.mustache
+3 −3 templates/shopping_cart_popover.mustache
+4 −2 tests/behat/behat_local_shopping_cart.php
+9 −9 tests/behat/shopping_cart_add.feature
+8 −7 tests/behat/shopping_cart_cashier.feature
+9 −9 tests/behat/shopping_cart_cashier_tax_categories.feature
+1 −1 tests/behat/shopping_cart_misc_settings.feature
+8 −8 tests/behat/shopping_cart_taxes_categories.feature
+3 −3 tests/behat/shopping_cart_taxes_simple.feature
+2 −2 tests/behat/shopping_cart_user_cancellation_consumption_rounding.feature
+9 −3 tests/behat/shopping_cart_user_checkcout.feature
+174 −0 tests/cartstore_test.php
+2 −1 tests/generator/lib.php
+5 −5 version.php
1 change: 1 addition & 0 deletions local/urise
Submodule urise added at 1c4134
1 change: 1 addition & 0 deletions local/wb_faq
Submodule wb_faq added at 2afd36
1 change: 1 addition & 0 deletions local/wb_news
Submodule wb_news added at bafcd6
2 changes: 1 addition & 1 deletion local/wunderbyte_table
Submodule wunderbyte_table updated 61 files
+66 −0 .github/workflows/moodle-release.yml
+48 −0 CHANGES.md
+61 −98 README.md
+1 −1 amd/build/actionbutton.min.js
+1 −1 amd/build/actionbutton.min.js.map
+8 −0 amd/build/edittable.min.js
+1 −0 amd/build/edittable.min.js.map
+1 −1 amd/build/filter.min.js
+1 −1 amd/build/filter.min.js.map
+2 −2 amd/build/init.min.js
+1 −1 amd/build/init.min.js.map
+1 −1 amd/build/reload.min.js
+1 −1 amd/build/reload.min.js.map
+10 −0 amd/build/reordering.min.js
+1 −0 amd/build/reordering.min.js.map
+1 −1 amd/build/search.min.js
+1 −1 amd/build/search.min.js.map
+29 −1 amd/src/actionbutton.js
+98 −0 amd/src/edittable.js
+55 −0 amd/src/filter.js
+39 −2 amd/src/init.js
+36 −14 amd/src/reload.js
+121 −0 amd/src/reordering.js
+3 −0 amd/src/search.js
+1 −1 classes/demo_table.php
+19 −151 classes/editfilter.php
+1 −0 classes/external/execute_action.php
+120 −184 classes/filter.php
+333 −0 classes/filters/base.php
+140 −0 classes/filters/filters_info.php
+204 −0 classes/filters/types/datepicker.php
+163 −0 classes/filters/types/hourlist.php
+50 −0 classes/filters/types/standardfilter.php
+115 −0 classes/filters/types/weekdays.php
+151 −0 classes/form/edittable.php
+283 −0 classes/local/settings/tablesettings.php
+101 −104 classes/output/demo.php
+3 −4 classes/output/renderer.php
+36 −4 classes/output/table.php
+134 −27 classes/wunderbyte_table.php
+7 −0 db/access.php
+9 −1 db/services.php
+23 −0 db/upgrade.php
+1 −0 download.php
+80 −18 lang/de/local_wunderbyte_table.php
+78 −18 lang/en/local_wunderbyte_table.php
+14 −3 settings.php
+9 −1 styles.css
+37 −0 templates/col_sortableitem.mustache
+44 −0 templates/component_edit.mustache
+2 −2 templates/component_filter.mustache
+6 −2 templates/component_print.mustache
+39 −0 templates/component_spinner.mustache
+1 −0 templates/table_list_container.mustache
+7 −5 templates/twtable_list.mustache
+3 −1 templates/twtable_list_container.mustache
+77 −0 tests/behat/customize_settings.feature
+1 −1 tests/behat/row_controls.feature
+16 −16 tests/behat/table_controls.feature
+1 −1 tests/behat/wunderbyte_table.feature
+3 −3 version.php
2 changes: 1 addition & 1 deletion mod/booking
Submodule booking updated 405 files
1 change: 1 addition & 0 deletions mod/organizer
Submodule organizer added at 921d6b
1 change: 1 addition & 0 deletions payment/gateway/payone
Submodule payone added at c56e5e
2 changes: 1 addition & 1 deletion theme/boost_union
Submodule boost_union updated 30 files
+11 −1 CHANGES.md
+8 −0 README.md
+1 −1 amd/build/smartmenu.min.js
+1 −1 amd/build/smartmenu.min.js.map
+103 −10 amd/src/smartmenu.js
+9 −1 classes/form/smartmenu_edit_form.php
+3 −1 classes/form/smartmenu_item_edit_form.php
+126 −0 classes/output/core_renderer.php
+51 −0 classes/output/tool_policy_renderer.php
+8 −0 classes/smartmenu.php
+12 −1 lang/en/theme_boost_union.php
+14 −0 layout/includes/footer.php
+4 −2 scss/boost_union/post.scss
+28 −0 settings.php
+24 −3 smartmenus/menulib.php
+1 −1 templates/course-hint-hidden.mustache
+1 −1 templates/smartmenus-cardmenu-children.mustache
+12 −10 templates/theme_boost/footer.mustache
+50 −0 tests/behat/behat_theme_boost_union_base_smartmenus.php
+50 −0 tests/behat/theme_boost_union_contentsettings_footer.feature
+19 −0 tests/behat/theme_boost_union_feelsettings_pagelayouts.feature
+31 −0 tests/behat/theme_boost_union_smartmenusettings_menuitems_dynamiccourses.feature
+5 −0 tests/behat/theme_boost_union_smartmenusettings_menuitems_management.feature
+20 −0 tests/behat/theme_boost_union_smartmenusettings_menuitems_presentation.feature
+25 −7 tests/behat/theme_boost_union_smartmenusettings_menuitems_rules.feature
+4 −7 tests/behat/theme_boost_union_smartmenusettings_menus_application.feature
+26 −8 tests/behat/theme_boost_union_smartmenusettings_menus_management.feature
+217 −53 tests/behat/theme_boost_union_smartmenusettings_menus_presentation.feature
+21 −7 tests/behat/theme_boost_union_smartmenusettings_menus_rules.feature
+2 −2 version.php

0 comments on commit 85f6dfc

Please sign in to comment.