chore: Update copyright year from 2025 to 2026 across core files
- Updated copyright headers in 3,055 core application files - Changed 'Copyright (C) 2014-2025' to 'Copyright (C) 2014-2026' - Added 123 new files from EspoCRM core updates - Removed 4 deprecated files - Total changes: 61,637 insertions, 54,283 deletions This is a routine maintenance update for the new year 2026.
This commit is contained in:
@@ -6,7 +6,8 @@
|
||||
"required": true,
|
||||
"pattern": "[a-zA-Z]{1}[a-zA-Z0-9_]+",
|
||||
"index": true,
|
||||
"tooltip": true
|
||||
"tooltip": true,
|
||||
"copyToClipboard": true
|
||||
},
|
||||
"value": {
|
||||
"type": "text",
|
||||
|
||||
@@ -105,6 +105,9 @@
|
||||
},
|
||||
"requestTime": {
|
||||
"columns": ["requestTime"]
|
||||
},
|
||||
"usernameIpAddress": {
|
||||
"columns": ["username", "ipAddress"]
|
||||
}
|
||||
},
|
||||
"hooksDisabled": true
|
||||
|
||||
@@ -0,0 +1,87 @@
|
||||
{
|
||||
"fields": {
|
||||
"code": {
|
||||
"type": "varchar",
|
||||
"maxLength": 3,
|
||||
"required": true,
|
||||
"readOnly": true,
|
||||
"index": true
|
||||
},
|
||||
"status": {
|
||||
"type": "enum",
|
||||
"options": [
|
||||
"Active",
|
||||
"Inactive"
|
||||
],
|
||||
"default": "Active",
|
||||
"maxLength": 8,
|
||||
"style": {
|
||||
"Inactive": "info"
|
||||
}
|
||||
},
|
||||
"label": {
|
||||
"type": "varchar",
|
||||
"notStorable": true,
|
||||
"readOnly": true,
|
||||
"orderDisabled": true,
|
||||
"loaderClassName": "Espo\\Classes\\FieldProcessing\\CurrencyRecord\\Label"
|
||||
},
|
||||
"symbol": {
|
||||
"type": "varchar",
|
||||
"notStorable": true,
|
||||
"readOnly": true,
|
||||
"orderDisabled": true,
|
||||
"loaderClassName": "Espo\\Classes\\FieldProcessing\\CurrencyRecord\\Symbol"
|
||||
},
|
||||
"rateDate": {
|
||||
"type": "date",
|
||||
"readOnly": true,
|
||||
"notStorable": true,
|
||||
"orderDisabled": true,
|
||||
"loaderClassName": "Espo\\Classes\\FieldProcessing\\CurrencyRecord\\RateDate"
|
||||
},
|
||||
"rate": {
|
||||
"type": "decimal",
|
||||
"readOnly": true,
|
||||
"notStorable": true,
|
||||
"orderDisabled": true,
|
||||
"decimalPlaces": 6,
|
||||
"loaderClassName": "Espo\\Classes\\FieldProcessing\\CurrencyRecord\\Rate",
|
||||
"view": "views/currency-record-rate/fields/rate"
|
||||
},
|
||||
"isBase": {
|
||||
"type": "bool",
|
||||
"readOnly": true,
|
||||
"notStorable": true,
|
||||
"orderDisabled": true,
|
||||
"loaderClassName": "Espo\\Classes\\FieldProcessing\\CurrencyRecord\\IsBase"
|
||||
}
|
||||
},
|
||||
"links": {
|
||||
"rates": {
|
||||
"type": "hasMany",
|
||||
"entity": "CurrencyRecordRate",
|
||||
"foreign": "record",
|
||||
"readOnly": true,
|
||||
"orderBy": "date",
|
||||
"order": "desc"
|
||||
}
|
||||
},
|
||||
"indexes": {
|
||||
"codeDeleteId": {
|
||||
"type": "unique",
|
||||
"columns": [
|
||||
"code",
|
||||
"deleteId"
|
||||
]
|
||||
}
|
||||
},
|
||||
"deleteId": true,
|
||||
"collection": {
|
||||
"textFilterFields": [
|
||||
"code"
|
||||
],
|
||||
"orderBy": "code",
|
||||
"order": "asc"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,84 @@
|
||||
{
|
||||
"fields": {
|
||||
"record": {
|
||||
"type": "link",
|
||||
"required": true,
|
||||
"readOnlyAfterCreate": true,
|
||||
"validatorClassNameList": [
|
||||
"Espo\\Classes\\FieldValidators\\CurrencyRecordRate\\Record\\NonBase"
|
||||
]
|
||||
},
|
||||
"baseCode": {
|
||||
"type": "varchar",
|
||||
"readOnly": true,
|
||||
"maxLength": 3
|
||||
},
|
||||
"date": {
|
||||
"type": "date",
|
||||
"required": true,
|
||||
"readOnlyAfterCreate": true,
|
||||
"default": "javascript: return this.dateTime.getToday();"
|
||||
},
|
||||
"rate": {
|
||||
"type": "decimal",
|
||||
"decimalPlaces": 6,
|
||||
"min": 0.0001,
|
||||
"precision": 15,
|
||||
"scale": 8,
|
||||
"required": true,
|
||||
"audited": true,
|
||||
"view": "views/currency-record-rate/fields/rate"
|
||||
},
|
||||
"createdAt": {
|
||||
"type": "datetime",
|
||||
"readOnly": true
|
||||
},
|
||||
"modifiedAt": {
|
||||
"type": "datetime",
|
||||
"readOnly": true
|
||||
},
|
||||
"createdBy": {
|
||||
"type": "link",
|
||||
"readOnly": true,
|
||||
"view": "views/fields/user",
|
||||
"fieldManagerParamList": []
|
||||
},
|
||||
"modifiedBy": {
|
||||
"type": "link",
|
||||
"readOnly": true,
|
||||
"view": "views/fields/user",
|
||||
"fieldManagerParamList": []
|
||||
}
|
||||
},
|
||||
"links": {
|
||||
"record": {
|
||||
"type": "belongsTo",
|
||||
"entity": "CurrencyRecord",
|
||||
"foreignName": "code"
|
||||
},
|
||||
"createdBy": {
|
||||
"type": "belongsTo",
|
||||
"entity": "User"
|
||||
},
|
||||
"modifiedBy": {
|
||||
"type": "belongsTo",
|
||||
"entity": "User"
|
||||
}
|
||||
},
|
||||
"indexes": {
|
||||
"recordIdBaseCodeDate": {
|
||||
"type": "unique",
|
||||
"columns": [
|
||||
"recordId",
|
||||
"baseCode",
|
||||
"date",
|
||||
"deleteId"
|
||||
]
|
||||
}
|
||||
},
|
||||
"deleteId": true,
|
||||
"collection": {
|
||||
"orderBy": "date",
|
||||
"order": "desc"
|
||||
}
|
||||
}
|
||||
@@ -13,7 +13,7 @@
|
||||
},
|
||||
"dashletsOptions": {
|
||||
"type": "jsonObject",
|
||||
"disabled": true
|
||||
"utility": true
|
||||
},
|
||||
"createdAt": {
|
||||
"type": "datetime",
|
||||
|
||||
@@ -47,13 +47,21 @@
|
||||
"view": "views/email-account/fields/folders",
|
||||
"displayAsList": true,
|
||||
"noEmptyString": true,
|
||||
"duplicateIgnore": true
|
||||
"duplicateIgnore": true,
|
||||
"tooltip": true,
|
||||
"fullNameAdditionalAttributeList": ["folderMap"]
|
||||
},
|
||||
"sentFolder": {
|
||||
"type": "varchar",
|
||||
"view": "views/email-account/fields/folder",
|
||||
"duplicateIgnore": true
|
||||
},
|
||||
"folderMap": {
|
||||
"type": "jsonObject",
|
||||
"validatorClassNameList": [
|
||||
"Espo\\Classes\\FieldValidators\\EmailAccount\\FolderMap\\Valid"
|
||||
]
|
||||
},
|
||||
"storeSentEmails": {
|
||||
"type": "bool",
|
||||
"tooltip": true
|
||||
|
||||
@@ -56,6 +56,9 @@
|
||||
"type": "linkMultiple",
|
||||
"audited": true
|
||||
},
|
||||
"description": {
|
||||
"type": "text"
|
||||
},
|
||||
"createdAt": {
|
||||
"type": "datetime",
|
||||
"readOnly": true
|
||||
|
||||
@@ -215,6 +215,9 @@
|
||||
"view": "views/lead-capture/fields/phone-number-country",
|
||||
"maxLength": 2
|
||||
},
|
||||
"description": {
|
||||
"type": "text"
|
||||
},
|
||||
"createdAt": {
|
||||
"type": "datetime",
|
||||
"readOnly": true
|
||||
|
||||
@@ -117,6 +117,9 @@
|
||||
"min": 0,
|
||||
"tooltip": "Settings.authTokenMaxIdleTime"
|
||||
},
|
||||
"description": {
|
||||
"type": "text"
|
||||
},
|
||||
"modifiedAt": {
|
||||
"type": "datetime",
|
||||
"readOnly": true
|
||||
|
||||
@@ -111,6 +111,10 @@
|
||||
"type": "bool",
|
||||
"default": true
|
||||
},
|
||||
"reactionNotificationsNotFollowed": {
|
||||
"type": "bool",
|
||||
"default": false
|
||||
},
|
||||
"autoFollowEntityTypeList": {
|
||||
"type": "multiEnum",
|
||||
"view": "views/preferences/fields/auto-follow-entity-type-list",
|
||||
@@ -207,6 +211,10 @@
|
||||
"default": [],
|
||||
"tooltip": true
|
||||
},
|
||||
"followAsCollaborator": {
|
||||
"type": "bool",
|
||||
"default": true
|
||||
},
|
||||
"emailUseExternalClient": {
|
||||
"type": "bool",
|
||||
"default": false
|
||||
|
||||
@@ -191,8 +191,7 @@
|
||||
"view": "views/settings/fields/default-currency"
|
||||
},
|
||||
"currencyRates": {
|
||||
"type": "base",
|
||||
"view": "views/settings/fields/currency-rates"
|
||||
"type": "base"
|
||||
},
|
||||
"outboundEmailIsShared": {
|
||||
"type": "bool",
|
||||
|
||||
@@ -32,6 +32,9 @@
|
||||
"tooltip": true,
|
||||
"audited": true
|
||||
},
|
||||
"description": {
|
||||
"type": "text"
|
||||
},
|
||||
"createdAt": {
|
||||
"type": "datetime",
|
||||
"readOnly": true
|
||||
@@ -48,7 +51,8 @@
|
||||
"foreign": "teams",
|
||||
"columnAttributeMap": {
|
||||
"role": "userRole"
|
||||
}
|
||||
},
|
||||
"apiSpecDisabled": true
|
||||
},
|
||||
"roles": {
|
||||
"type": "hasMany",
|
||||
|
||||
@@ -75,6 +75,9 @@
|
||||
"teams": {
|
||||
"type": "linkMultiple"
|
||||
},
|
||||
"description": {
|
||||
"type": "text"
|
||||
},
|
||||
"createdAt": {
|
||||
"type": "datetime",
|
||||
"readOnly": true
|
||||
@@ -120,6 +123,11 @@
|
||||
},
|
||||
"title": {
|
||||
"type": "varchar"
|
||||
},
|
||||
"filename": {
|
||||
"type": "varchar",
|
||||
"maxLength": 150,
|
||||
"tooltip": true
|
||||
}
|
||||
},
|
||||
"links": {
|
||||
|
||||
@@ -292,13 +292,17 @@
|
||||
"type": "link",
|
||||
"layoutDetailDisabled": true,
|
||||
"tooltip": true,
|
||||
"customizationAuditedDisabled": true,
|
||||
"customizationAutocompleteOnEmptyDisabled": true,
|
||||
"validatorClassNameList": [
|
||||
"Espo\\Classes\\FieldValidators\\User\\DefaultTeam\\IsUserTeam"
|
||||
],
|
||||
"view": "views/user/fields/default-team",
|
||||
"dynamicLogicVisibleDisabled": true
|
||||
"dynamicLogicVisibleDisabled": true,
|
||||
"fieldManagerParamList": [
|
||||
"audited",
|
||||
"tooltipText",
|
||||
"readOnly",
|
||||
"autocompleteOnEmpty"
|
||||
]
|
||||
},
|
||||
"acceptanceStatus": {
|
||||
"type": "varchar",
|
||||
@@ -350,7 +354,14 @@
|
||||
"additionalAttributeList": ["columns"],
|
||||
"layoutDetailDisabled": true,
|
||||
"view": "views/user/fields/teams",
|
||||
"audited": true
|
||||
"audited": true,
|
||||
"fieldManagerParamList": [
|
||||
"audited",
|
||||
"tooltipText",
|
||||
"readOnly",
|
||||
"autocompleteOnEmpty",
|
||||
"maxCount"
|
||||
]
|
||||
},
|
||||
"roles": {
|
||||
"type": "linkMultiple",
|
||||
|
||||
@@ -51,6 +51,9 @@
|
||||
"type": "bool",
|
||||
"tooltip": true
|
||||
},
|
||||
"description": {
|
||||
"type": "text"
|
||||
},
|
||||
"createdAt": {
|
||||
"type": "datetime",
|
||||
"readOnly": true
|
||||
|
||||
Reference in New Issue
Block a user