Skip to content
This repository has been archived by the owner on Oct 4, 2023. It is now read-only.

Crm 5.37.1 #194

Open
wants to merge 51 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
bdfdb05
Remove protected _id variable from Form classes
akosgarai Jun 10, 2021
95d6ff7
Add fresh underscore-umd package to the codebase
akosgarai Jun 10, 2021
49f8eb4
Add backbone, marionette, mobelbinder js libs to the codebase
akosgarai Jun 10, 2021
73030ff
Add json2.js to packages
akosgarai Jun 10, 2021
3f5ae63
Replace the old underscore version to the new one.
akosgarai Jun 10, 2021
e4d4c51
Replace backbone to the one provided by this package
akosgarai Jun 10, 2021
19ff9c1
Replace marionette to the one provided by this package
akosgarai Jun 10, 2021
15e5b54
Replace modelbinder to the one provided by this package
akosgarai Jun 10, 2021
7893f65
Replace json2 to the one provided by this package
akosgarai Jun 10, 2021
2a444ad
Add crm.backbone.js to codebase and fix undefined issue
akosgarai Jun 10, 2021
d9a49d8
Replace crm.backbone.js to the one provided by this package
akosgarai Jun 10, 2021
40475ac
Eliminate some undefined issue in add-sub-resource app
akosgarai Jun 10, 2021
d04a730
Replace deprecated addRegions method in add-sub-resource app
akosgarai Jun 10, 2021
9c7dbab
Move utils module code to add-sub-resource app
akosgarai Jun 10, 2021
e3b8beb
Fix the first creen of the new booking flow
akosgarai Jun 10, 2021
bb8d366
Don't load entities.js
akosgarai Jun 10, 2021
28fb44e
Remove the common.views module
akosgarai Jun 10, 2021
7871c35
Eliminate some undefined issue.
akosgarai Jun 10, 2021
e8fc4e9
Don't include add-sub-resource view.js
akosgarai Jun 10, 2021
2336911
Move the templates to html-header region
akosgarai Jun 10, 2021
382f9c9
Partially rendered unlimited resources screen
akosgarai Jun 10, 2021
79bf915
Modal region fixes, copy further content to the app
akosgarai Jun 10, 2021
bd0d01d
Fix various js issues, delete some code from the views.js
akosgarai Jun 10, 2021
98483c3
Further fixes - replace a bunch of $ to CRM.$
akosgarai Jun 11, 2021
20bb391
Fix variable instead of main the getRegion function needs to be used
akosgarai Jun 11, 2021
ebdf0f4
Make PriceCache, ResourceTotal variables global
akosgarai Jun 11, 2021
0b35085
Move event handlers to app
akosgarai Jun 11, 2021
968d773
Trigger modal close event
akosgarai Jun 11, 2021
5915547
Duplicate event listeners for displaying the selects in the edit modal
akosgarai Jun 11, 2021
0ea6083
Remove sub resource functionality
akosgarai Jun 11, 2021
4fe513c
Move further functionality to app from the view
akosgarai Jun 11, 2021
8284f37
Move entities js object to a new js file
akosgarai Jun 11, 2021
2540a17
Move view classes to view.js and fix event handlers
akosgarai Jun 11, 2021
5d22078
Discount amount field change handler
akosgarai Jun 11, 2021
27fd8c0
Make info page work without js issues
akosgarai Jun 12, 2021
473bf1f
Fix display condition on day-view form
akosgarai Jun 23, 2021
1fe1fb8
Remove crmAccordion call
akosgarai Jun 23, 2021
fac427b
Remove other crmAccordion call
akosgarai Jun 23, 2021
f7d6d65
Fix jquery toggle function
akosgarai Jun 23, 2021
40b6f48
Fix jquery function
akosgarai Jun 23, 2021
b06f4fa
Regenerate civix.php file with civix command command
akosgarai Jun 23, 2021
9793b9a
Regenerate upgrader base with civix command
akosgarai Jun 23, 2021
ae7131c
Rename OptionGroups.xml, suffix it with _install
akosgarai Jun 24, 2021
123bbec
Replace array() to [], further code updates
akosgarai Jun 24, 2021
1045461
Move the schhema xml files under a CRM directory
akosgarai Jun 24, 2021
feda5a2
Regenerate DAO with civix command
akosgarai Jun 24, 2021
ff5ce6d
Remove old file that is replaced with the auto_install sql task
akosgarai Jun 24, 2021
5a0f3fd
Remove auto_uninstall steps from civibooking uninstall sql
akosgarai Jun 24, 2021
f086f82
Remove unnecessary files
akosgarai Jun 24, 2021
06cb6f6
Reorder table creations in install sql
akosgarai Jun 24, 2021
61e15e1
Update Booking create api
akosgarai Jun 24, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion CRM/Admin/Form/AdhocChargesItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
*
*/
class CRM_Admin_Form_AdhocChargesItem extends CRM_Admin_Form {
protected $_id = NULL;

function preProcess() {
parent::preProcess();
Expand Down
1 change: 0 additions & 1 deletion CRM/Admin/Form/Resource.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
*
*/
class CRM_Admin_Form_Resource extends CRM_Admin_Form {
protected $_id = NULL;

function preProcess() {
parent::preProcess();
Expand Down
1 change: 0 additions & 1 deletion CRM/Admin/Form/ResourceConfigOption.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
*
*/
class CRM_Admin_Form_ResourceConfigOption extends CRM_Admin_Form {
protected $_id = NULL;
protected $_sid = NULL;

function preProcess() {
Expand Down
1 change: 0 additions & 1 deletion CRM/Admin/Form/ResourceConfigSet.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
*
*/
class CRM_Admin_Form_ResourceConfigSet extends CRM_Admin_Form {
protected $_id = NULL;

function preProcess() {
parent::preProcess();
Expand Down
Loading