From e490e261b7446f2c95a394ee965276686e45667f Mon Sep 17 00:00:00 2001 From: bsiggel Date: Sat, 24 Jan 2026 12:34:02 +0100 Subject: [PATCH] Add CKndigung entity and related resources - Introduced CKndigung entity with metadata definitions including fields, links, indexes, and scopes. - Added CKndigung controller for handling requests. - Created internationalization files for CKndigung in multiple languages. - Updated existing metadata and resource files to include CKndigung references. - Enhanced global translations to support CKndigung terminology. --- custom/Espo/Custom/Controllers/CKndigung.php | 7 ++ .../Resources/i18n/ar_AR/CKndigung.json | 10 ++ .../Resources/i18n/bg_BG/CKndigung.json | 10 ++ .../Resources/i18n/cs_CZ/CKndigung.json | 5 + .../Resources/i18n/da_DK/CKndigung.json | 10 ++ .../Resources/i18n/de_DE/CKndigung.json | 9 ++ .../Resources/i18n/en_GB/CKndigung.json | 1 + .../Resources/i18n/en_US/CKndigung.json | 12 ++ .../Custom/Resources/i18n/en_US/Global.json | 6 +- .../Resources/i18n/es_ES/CKndigung.json | 10 ++ .../Resources/i18n/es_MX/CKndigung.json | 10 ++ .../Resources/i18n/fa_IR/CKndigung.json | 10 ++ .../Resources/i18n/fr_FR/CKndigung.json | 5 + .../Resources/i18n/hr_HR/CKndigung.json | 10 ++ .../Resources/i18n/hu_HU/CKndigung.json | 10 ++ .../Resources/i18n/id_ID/CKndigung.json | 5 + .../Resources/i18n/it_IT/CKndigung.json | 10 ++ .../Resources/i18n/ja_JP/CKndigung.json | 10 ++ .../Resources/i18n/lt_LT/CKndigung.json | 10 ++ .../Resources/i18n/lv_LV/CKndigung.json | 10 ++ .../Resources/i18n/nb_NO/CKndigung.json | 10 ++ .../Resources/i18n/nl_NL/CKndigung.json | 10 ++ .../Resources/i18n/pl_PL/CKndigung.json | 10 ++ .../Resources/i18n/pt_BR/CKndigung.json | 10 ++ .../Resources/i18n/pt_PT/CKndigung.json | 10 ++ .../Resources/i18n/ro_RO/CKndigung.json | 5 + .../Resources/i18n/ru_RU/CKndigung.json | 10 ++ .../Resources/i18n/sk_SK/CKndigung.json | 10 ++ .../Resources/i18n/sl_SI/CKndigung.json | 10 ++ .../Resources/i18n/sr_RS/CKndigung.json | 10 ++ .../Resources/i18n/sv_SE/CKndigung.json | 10 ++ .../Resources/i18n/th_TH/CKndigung.json | 10 ++ .../Resources/i18n/tr_TR/CKndigung.json | 10 ++ .../Resources/i18n/uk_UA/CKndigung.json | 10 ++ .../Resources/i18n/vi_VN/CKndigung.json | 10 ++ .../Resources/i18n/zh_CN/CKndigung.json | 10 ++ .../Resources/i18n/zh_TW/CKndigung.json | 10 ++ .../metadata/clientDefs/CKndigung.json | 37 ++++++ .../metadata/entityDefs/CKndigung.json | 110 ++++++++++++++++++ .../Resources/metadata/entityDefs/Call.json | 3 +- .../Resources/metadata/entityDefs/Email.json | 3 +- .../metadata/entityDefs/Meeting.json | 3 +- .../Resources/metadata/entityDefs/Task.json | 3 +- .../metadata/recordDefs/CKndigung.json | 3 + .../Resources/metadata/scopes/CKndigung.json | 23 ++++ data/config.php | 7 +- 46 files changed, 518 insertions(+), 9 deletions(-) create mode 100644 custom/Espo/Custom/Controllers/CKndigung.php create mode 100644 custom/Espo/Custom/Resources/i18n/ar_AR/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/bg_BG/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/cs_CZ/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/da_DK/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/de_DE/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/en_GB/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/en_US/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/es_ES/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/es_MX/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/fa_IR/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/fr_FR/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/hr_HR/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/hu_HU/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/id_ID/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/it_IT/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/ja_JP/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/lt_LT/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/lv_LV/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/nb_NO/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/nl_NL/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/pl_PL/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/pt_BR/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/pt_PT/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/ro_RO/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/ru_RU/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/sk_SK/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/sl_SI/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/sr_RS/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/sv_SE/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/th_TH/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/tr_TR/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/uk_UA/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/vi_VN/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/zh_CN/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/i18n/zh_TW/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/metadata/clientDefs/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/metadata/entityDefs/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/metadata/recordDefs/CKndigung.json create mode 100644 custom/Espo/Custom/Resources/metadata/scopes/CKndigung.json diff --git a/custom/Espo/Custom/Controllers/CKndigung.php b/custom/Espo/Custom/Controllers/CKndigung.php new file mode 100644 index 00000000..ae9c7f0c --- /dev/null +++ b/custom/Espo/Custom/Controllers/CKndigung.php @@ -0,0 +1,7 @@ + 'Import', 32 => 'GlobalStream', 33 => 'Report', - 34 => 'CCallQueues' + 34 => 'CCallQueues', + 35 => 'CKndigung' ], 'quickCreateList' => [ 0 => 'Account', @@ -359,8 +360,8 @@ return [ 0 => 'youtube.com', 1 => 'google.com' ], - 'cacheTimestamp' => 1769253751, - 'microtime' => 1769253751.94842, + 'cacheTimestamp' => 1769254421, + 'microtime' => 1769254421.498616, 'siteUrl' => 'https://crm.bitbylaw.com', 'fullTextSearchMinLength' => 4, 'appTimestamp' => 1768843902,