From c23563e39ccd69a10339ec11fc654930d8dfb177 Mon Sep 17 00:00:00 2001 From: Seamus Lee Date: Thu, 11 Feb 2021 17:08:23 +1100 Subject: [PATCH] Regenerate DAOs and I18n Schema Structure following merge of #19565 --- CRM/Activity/DAO/Activity.php | 8 +++- CRM/Campaign/DAO/Campaign.php | 3 +- CRM/Case/DAO/Case.php | 9 +++- CRM/Contact/DAO/Contact.php | 36 +++++++++++++++- CRM/Contact/DAO/ContactType.php | 5 ++- CRM/Contact/DAO/DashboardContact.php | 5 ++- CRM/Contribute/DAO/Contribution.php | 8 +++- CRM/Contribute/DAO/ContributionPage.php | 16 ++++++- CRM/Contribute/DAO/Product.php | 3 +- CRM/Core/DAO/ActionSchedule.php | 50 +++++++++++++++++++++- CRM/Core/DAO/CustomField.php | 6 +-- CRM/Core/DAO/CustomGroup.php | 5 ++- CRM/Core/DAO/Email.php | 14 +++++- CRM/Core/DAO/Job.php | 8 +++- CRM/Core/DAO/LocationType.php | 5 ++- CRM/Core/DAO/MappingField.php | 4 +- CRM/Core/DAO/Menu.php | 8 +++- CRM/Core/DAO/OptionValue.php | 5 ++- CRM/Core/DAO/Phone.php | 10 +++-- CRM/Core/DAO/PreferencesDate.php | 14 +++++- CRM/Core/DAO/PrintLabel.php | 10 ++++- CRM/Core/DAO/Setting.php | 5 ++- CRM/Core/DAO/Tag.php | 6 +-- CRM/Core/DAO/UFField.php | 6 +-- CRM/Core/DAO/UFGroup.php | 6 ++- CRM/Core/I18n/SchemaStructure.php | 10 ++++- CRM/Cxn/DAO/Cxn.php | 20 ++++++++- CRM/Event/DAO/Event.php | 12 +++++- CRM/Financial/DAO/PaymentProcessorType.php | 3 +- CRM/Mailing/DAO/Mailing.php | 20 ++++++++- CRM/Mailing/DAO/MailingComponent.php | 6 ++- CRM/Member/DAO/Membership.php | 3 +- CRM/Member/DAO/MembershipStatus.php | 12 +++++- CRM/Member/DAO/MembershipType.php | 10 +++-- CRM/PCP/DAO/PCP.php | 4 +- CRM/Price/DAO/LineItem.php | 3 +- CRM/Price/DAO/PriceField.php | 3 +- CRM/Price/DAO/PriceFieldValue.php | 8 +++- CRM/Price/DAO/PriceSet.php | 4 +- 39 files changed, 321 insertions(+), 52 deletions(-) diff --git a/CRM/Activity/DAO/Activity.php b/CRM/Activity/DAO/Activity.php index 99bb056138..57685afb2c 100644 --- a/CRM/Activity/DAO/Activity.php +++ b/CRM/Activity/DAO/Activity.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Activity/Activity.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:720be1c759309d7831d6301f28f17257) + * (GenCodeChecksum:2f028d02e039b5c575709449f508b939) */ /** @@ -738,6 +738,9 @@ class CRM_Activity_DAO_Activity extends CRM_Core_DAO { 'entity' => 'Activity', 'bao' => 'CRM_Activity_BAO_Activity', 'localizable' => 0, + 'html' => [ + 'label' => ts("Created Date"), + ], 'add' => '4.7', ], 'activity_modified_date' => [ @@ -753,6 +756,9 @@ class CRM_Activity_DAO_Activity extends CRM_Core_DAO { 'entity' => 'Activity', 'bao' => 'CRM_Activity_BAO_Activity', 'localizable' => 0, + 'html' => [ + 'label' => ts("Modified Date"), + ], 'add' => '4.7', ], ]; diff --git a/CRM/Campaign/DAO/Campaign.php b/CRM/Campaign/DAO/Campaign.php index 529103f7f3..9fc3d2237f 100644 --- a/CRM/Campaign/DAO/Campaign.php +++ b/CRM/Campaign/DAO/Campaign.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Campaign/Campaign.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:3c5c445117124eb83c49900f9ba7b618) + * (GenCodeChecksum:0f69dda13e7c2b4ebeeeaf1ea47c07ef) */ /** @@ -522,6 +522,7 @@ class CRM_Campaign_DAO_Campaign extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Text', + 'label' => ts("Goal Revenue"), ], 'add' => '3.4', ], diff --git a/CRM/Case/DAO/Case.php b/CRM/Case/DAO/Case.php index 2906b89aba..ccabab1602 100644 --- a/CRM/Case/DAO/Case.php +++ b/CRM/Case/DAO/Case.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Case/Case.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:d6c7680ec45c92e71f0aea01dc6477ab) + * (GenCodeChecksum:7ad55ad1c4e7a001188c7e144ae4de95) */ /** @@ -266,6 +266,7 @@ class CRM_Case_DAO_Case extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'TextArea', + 'label' => ts("Details"), ], 'add' => '1.8', ], @@ -321,6 +322,9 @@ class CRM_Case_DAO_Case extends CRM_Core_DAO { 'entity' => 'Case', 'bao' => 'CRM_Case_BAO_Case', 'localizable' => 0, + 'html' => [ + 'label' => ts("Created Date"), + ], 'add' => '4.7', ], 'case_modified_date' => [ @@ -336,6 +340,9 @@ class CRM_Case_DAO_Case extends CRM_Core_DAO { 'entity' => 'Case', 'bao' => 'CRM_Case_BAO_Case', 'localizable' => 0, + 'html' => [ + 'label' => ts("Modified Date"), + ], 'add' => '4.7', ], ]; diff --git a/CRM/Contact/DAO/Contact.php b/CRM/Contact/DAO/Contact.php index c20bdb1db2..95f45151b5 100644 --- a/CRM/Contact/DAO/Contact.php +++ b/CRM/Contact/DAO/Contact.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Contact/Contact.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:5e9f67b31a424494f29bbfbd0e111d5c) + * (GenCodeChecksum:d72db3da5f0a3646c35296c43880b425) */ /** @@ -535,6 +535,7 @@ class CRM_Contact_DAO_Contact extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'CheckBox', + 'label' => ts("Do Not Email"), ], 'add' => '1.1', ], @@ -554,6 +555,7 @@ class CRM_Contact_DAO_Contact extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'CheckBox', + 'label' => ts("Do Not Phone"), ], 'add' => '1.1', ], @@ -573,6 +575,7 @@ class CRM_Contact_DAO_Contact extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'CheckBox', + 'label' => ts("Do Not Mail"), ], 'add' => '1.1', ], @@ -592,6 +595,7 @@ class CRM_Contact_DAO_Contact extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'CheckBox', + 'label' => ts("Do Not Sms"), ], 'add' => '3.0', ], @@ -611,6 +615,7 @@ class CRM_Contact_DAO_Contact extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'CheckBox', + 'label' => ts("Do Not Trade"), ], 'add' => '1.1', ], @@ -630,6 +635,7 @@ class CRM_Contact_DAO_Contact extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'CheckBox', + 'label' => ts("Is Opt Out"), ], 'add' => '1.1', ], @@ -651,6 +657,7 @@ class CRM_Contact_DAO_Contact extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Text', + 'label' => ts("Legal Identifier"), ], 'add' => '1.1', ], @@ -672,6 +679,7 @@ class CRM_Contact_DAO_Contact extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Text', + 'label' => ts("External Identifier"), ], 'add' => '1.1', ], @@ -750,6 +758,7 @@ class CRM_Contact_DAO_Contact extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Text', + 'label' => ts("Legal Name"), ], 'add' => '1.1', ], @@ -767,6 +776,7 @@ class CRM_Contact_DAO_Contact extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'File', + 'label' => ts("Image URL"), ], 'add' => '1.1', ], @@ -839,6 +849,7 @@ class CRM_Contact_DAO_Contact extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Select', + 'label' => ts("Preferred Mail Format"), ], 'pseudoconstant' => [ 'callback' => 'CRM_Core_SelectValues::pmf', @@ -878,6 +889,9 @@ class CRM_Contact_DAO_Contact extends CRM_Core_DAO { 'entity' => 'Contact', 'bao' => 'CRM_Contact_BAO_Contact', 'localizable' => 0, + 'html' => [ + 'label' => ts("API KEY"), + ], 'add' => '2.2', ], 'contact_source' => [ @@ -919,6 +933,7 @@ class CRM_Contact_DAO_Contact extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Text', + 'label' => ts("First Name"), ], 'add' => '1.1', ], @@ -941,6 +956,7 @@ class CRM_Contact_DAO_Contact extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Text', + 'label' => ts("Middle Name"), ], 'add' => '1.1', ], @@ -963,6 +979,7 @@ class CRM_Contact_DAO_Contact extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Text', + 'label' => ts("Last Name"), ], 'add' => '1.1', ], @@ -1032,6 +1049,7 @@ class CRM_Contact_DAO_Contact extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Text', + 'label' => ts("Formal Title"), ], 'add' => '4.5', ], @@ -1093,6 +1111,7 @@ class CRM_Contact_DAO_Contact extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Text', + 'label' => ts("Email Greeting Custom"), ], 'add' => '3.0', ], @@ -1146,6 +1165,7 @@ class CRM_Contact_DAO_Contact extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Text', + 'label' => ts("Postal Greeting Custom"), ], 'add' => '3.0', ], @@ -1199,6 +1219,7 @@ class CRM_Contact_DAO_Contact extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Text', + 'label' => ts("Addressee Custom"), ], 'add' => '3.0', ], @@ -1235,6 +1256,7 @@ class CRM_Contact_DAO_Contact extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Text', + 'label' => ts("Job Title"), ], 'add' => '1.1', ], @@ -1280,6 +1302,7 @@ class CRM_Contact_DAO_Contact extends CRM_Core_DAO { 'html' => [ 'type' => 'Select Date', 'formatType' => 'birth', + 'label' => ts("Birth Date"), ], 'add' => '1.1', ], @@ -1300,6 +1323,7 @@ class CRM_Contact_DAO_Contact extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'CheckBox', + 'label' => ts("Is Deceased"), ], 'add' => '1.1', ], @@ -1320,6 +1344,7 @@ class CRM_Contact_DAO_Contact extends CRM_Core_DAO { 'html' => [ 'type' => 'Select Date', 'formatType' => 'birth', + 'label' => ts("Deceased Date"), ], 'add' => '1.5', ], @@ -1342,6 +1367,7 @@ class CRM_Contact_DAO_Contact extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Text', + 'label' => ts("Household Name"), ], 'add' => '1.1', ], @@ -1381,6 +1407,7 @@ class CRM_Contact_DAO_Contact extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Text', + 'label' => ts("Organization Name"), ], 'add' => '1.1', ], @@ -1402,6 +1429,7 @@ class CRM_Contact_DAO_Contact extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Text', + 'label' => ts("SIC Code"), ], 'add' => '1.1', ], @@ -1479,6 +1507,9 @@ class CRM_Contact_DAO_Contact extends CRM_Core_DAO { 'entity' => 'Contact', 'bao' => 'CRM_Contact_BAO_Contact', 'localizable' => 0, + 'html' => [ + 'label' => ts("Created Date"), + ], 'add' => '4.3', ], 'modified_date' => [ @@ -1494,6 +1525,9 @@ class CRM_Contact_DAO_Contact extends CRM_Core_DAO { 'entity' => 'Contact', 'bao' => 'CRM_Contact_BAO_Contact', 'localizable' => 0, + 'html' => [ + 'label' => ts("Modified Date"), + ], 'add' => '4.3', ], ]; diff --git a/CRM/Contact/DAO/ContactType.php b/CRM/Contact/DAO/ContactType.php index c8907116cf..740fd64092 100644 --- a/CRM/Contact/DAO/ContactType.php +++ b/CRM/Contact/DAO/ContactType.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Contact/ContactType.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:f9726b18597a2b1acd205de3b4ff092b) + * (GenCodeChecksum:5bc838a856b254ffa52ef88002b9e79d) */ /** @@ -156,6 +156,9 @@ class CRM_Contact_DAO_ContactType extends CRM_Core_DAO { 'entity' => 'ContactType', 'bao' => 'CRM_Contact_BAO_ContactType', 'localizable' => 0, + 'html' => [ + 'label' => ts("Name"), + ], 'add' => '3.1', ], 'label' => [ diff --git a/CRM/Contact/DAO/DashboardContact.php b/CRM/Contact/DAO/DashboardContact.php index e6503f2924..1f59e89e27 100644 --- a/CRM/Contact/DAO/DashboardContact.php +++ b/CRM/Contact/DAO/DashboardContact.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Contact/DashboardContact.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:11cb89ad6720c440b84d0f60799cc2b2) + * (GenCodeChecksum:6d5df608548f4ad29cc269d79d1cfa00) */ /** @@ -172,6 +172,9 @@ class CRM_Contact_DAO_DashboardContact extends CRM_Core_DAO { 'entity' => 'DashboardContact', 'bao' => 'CRM_Contact_BAO_DashboardContact', 'localizable' => 0, + 'html' => [ + 'label' => ts("Column Number"), + ], 'add' => '3.1', ], 'is_active' => [ diff --git a/CRM/Contribute/DAO/Contribution.php b/CRM/Contribute/DAO/Contribution.php index 0307caf266..b0d858467a 100644 --- a/CRM/Contribute/DAO/Contribution.php +++ b/CRM/Contribute/DAO/Contribution.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Contribute/Contribution.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:5f295dd3b3e4f5d9d11b17e230b7be19) + * (GenCodeChecksum:9749f10e7efc0712b82fb8fb4afa98bf) */ /** @@ -474,6 +474,7 @@ class CRM_Contribute_DAO_Contribution extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Text', + 'label' => ts("Total Amount"), ], 'add' => '1.3', ], @@ -497,6 +498,7 @@ class CRM_Contribute_DAO_Contribution extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Text', + 'label' => ts("Fee Amount"), ], 'add' => '1.3', ], @@ -520,6 +522,7 @@ class CRM_Contribute_DAO_Contribution extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Text', + 'label' => ts("Net Amount"), ], 'add' => '1.3', ], @@ -602,6 +605,7 @@ class CRM_Contribute_DAO_Contribution extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Select', + 'label' => ts("Currency"), ], 'pseudoconstant' => [ 'table' => 'civicrm_currency', @@ -666,6 +670,7 @@ class CRM_Contribute_DAO_Contribution extends CRM_Core_DAO { 'html' => [ 'type' => 'Select Date', 'formatType' => 'activityDateTime', + 'label' => ts("Receipt Date"), ], 'add' => '1.3', ], @@ -913,6 +918,7 @@ class CRM_Contribute_DAO_Contribution extends CRM_Core_DAO { 'html' => [ 'type' => 'Select Date', 'formatType' => 'activityDateTime', + 'label' => ts("Revenue Recognition Date"), ], 'add' => '4.7', ], diff --git a/CRM/Contribute/DAO/ContributionPage.php b/CRM/Contribute/DAO/ContributionPage.php index 516090d4c5..a2b8759d8d 100644 --- a/CRM/Contribute/DAO/ContributionPage.php +++ b/CRM/Contribute/DAO/ContributionPage.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Contribute/ContributionPage.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:7184516d11bf5c76f3f2604202b81cbf) + * (GenCodeChecksum:b3e008e1f16c3996b30283a02b473918) */ /** @@ -463,6 +463,7 @@ class CRM_Contribute_DAO_ContributionPage extends CRM_Core_DAO { 'FKClassName' => 'CRM_Financial_DAO_FinancialType', 'html' => [ 'type' => 'Select', + 'label' => ts("Financial Type"), ], 'pseudoconstant' => [ 'table' => 'civicrm_financial_type', @@ -486,6 +487,7 @@ class CRM_Contribute_DAO_ContributionPage extends CRM_Core_DAO { 'serialize' => self::SERIALIZE_SEPARATOR_TRIMMED, 'html' => [ 'type' => 'Select', + 'label' => ts("Payment Processors"), ], 'pseudoconstant' => [ 'table' => 'civicrm_payment_processor', @@ -670,6 +672,9 @@ class CRM_Contribute_DAO_ContributionPage extends CRM_Core_DAO { 'entity' => 'ContributionPage', 'bao' => 'CRM_Contribute_BAO_ContributionPage', 'localizable' => 1, + 'html' => [ + 'label' => ts("Initial Amount Label"), + ], 'add' => '4.3', ], 'initial_amount_help_text' => [ @@ -682,6 +687,9 @@ class CRM_Contribute_DAO_ContributionPage extends CRM_Core_DAO { 'entity' => 'ContributionPage', 'bao' => 'CRM_Contribute_BAO_ContributionPage', 'localizable' => 1, + 'html' => [ + 'label' => ts("Initial Amount Help Text"), + ], 'add' => '4.3', ], 'min_initial_amount' => [ @@ -698,6 +706,9 @@ class CRM_Contribute_DAO_ContributionPage extends CRM_Core_DAO { 'entity' => 'ContributionPage', 'bao' => 'CRM_Contribute_BAO_ContributionPage', 'localizable' => 0, + 'html' => [ + 'label' => ts("Min. Initial Amount"), + ], 'add' => '4.3', ], 'is_allow_other_amount' => [ @@ -771,6 +782,9 @@ class CRM_Contribute_DAO_ContributionPage extends CRM_Core_DAO { 'entity' => 'ContributionPage', 'bao' => 'CRM_Contribute_BAO_ContributionPage', 'localizable' => 0, + 'html' => [ + 'label' => ts("Goal Amount"), + ], 'add' => '1.5', ], 'thankyou_title' => [ diff --git a/CRM/Contribute/DAO/Product.php b/CRM/Contribute/DAO/Product.php index ddf457e89b..f0a409c747 100644 --- a/CRM/Contribute/DAO/Product.php +++ b/CRM/Contribute/DAO/Product.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Contribute/Product.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:4d475da827103b1fc7cb6e28cd6ed773) + * (GenCodeChecksum:b2249b03393c4a2c59e46ab95ab862bc) */ /** @@ -338,6 +338,7 @@ class CRM_Contribute_DAO_Product extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Select', + 'label' => ts("Currency"), ], 'pseudoconstant' => [ 'table' => 'civicrm_currency', diff --git a/CRM/Core/DAO/ActionSchedule.php b/CRM/Core/DAO/ActionSchedule.php index 5b53d4d08a..e3d49500d0 100644 --- a/CRM/Core/DAO/ActionSchedule.php +++ b/CRM/Core/DAO/ActionSchedule.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Core/ActionSchedule.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:247858325ae1c49fbdd7a775d5aa5bce) + * (GenCodeChecksum:3a65c11b5c6e2f56b85b8e013fb4a5ea) */ /** @@ -417,6 +417,9 @@ class CRM_Core_DAO_ActionSchedule extends CRM_Core_DAO { 'entity' => 'ActionSchedule', 'bao' => 'CRM_Core_BAO_ActionSchedule', 'localizable' => 0, + 'html' => [ + 'label' => ts("Recipient"), + ], 'add' => '3.4', ], 'limit_to' => [ @@ -429,6 +432,9 @@ class CRM_Core_DAO_ActionSchedule extends CRM_Core_DAO { 'entity' => 'ActionSchedule', 'bao' => 'CRM_Core_BAO_ActionSchedule', 'localizable' => 0, + 'html' => [ + 'label' => ts("Limit To"), + ], 'add' => '4.4', ], 'entity_value' => [ @@ -444,6 +450,9 @@ class CRM_Core_DAO_ActionSchedule extends CRM_Core_DAO { 'bao' => 'CRM_Core_BAO_ActionSchedule', 'localizable' => 0, 'serialize' => self::SERIALIZE_SEPARATOR_TRIMMED, + 'html' => [ + 'label' => ts("Entity value"), + ], 'add' => '3.4', ], 'entity_status' => [ @@ -459,6 +468,9 @@ class CRM_Core_DAO_ActionSchedule extends CRM_Core_DAO { 'bao' => 'CRM_Core_BAO_ActionSchedule', 'localizable' => 0, 'serialize' => self::SERIALIZE_SEPARATOR_TRIMMED, + 'html' => [ + 'label' => ts("Entity Status"), + ], 'add' => '3.4', ], 'start_action_offset' => [ @@ -472,6 +484,9 @@ class CRM_Core_DAO_ActionSchedule extends CRM_Core_DAO { 'entity' => 'ActionSchedule', 'bao' => 'CRM_Core_BAO_ActionSchedule', 'localizable' => 0, + 'html' => [ + 'label' => ts("Start Action Offset"), + ], 'add' => '3.4', ], 'start_action_unit' => [ @@ -488,6 +503,7 @@ class CRM_Core_DAO_ActionSchedule extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Select', + 'label' => ts("Start Action Unit"), ], 'pseudoconstant' => [ 'callback' => 'CRM_Core_SelectValues::getRecurringFrequencyUnits', @@ -506,6 +522,9 @@ class CRM_Core_DAO_ActionSchedule extends CRM_Core_DAO { 'entity' => 'ActionSchedule', 'bao' => 'CRM_Core_BAO_ActionSchedule', 'localizable' => 0, + 'html' => [ + 'label' => ts("Start Action condition"), + ], 'add' => '3.4', ], 'start_action_date' => [ @@ -520,6 +539,9 @@ class CRM_Core_DAO_ActionSchedule extends CRM_Core_DAO { 'entity' => 'ActionSchedule', 'bao' => 'CRM_Core_BAO_ActionSchedule', 'localizable' => 0, + 'html' => [ + 'label' => ts("Start Action Date"), + ], 'add' => '3.4', ], 'is_repeat' => [ @@ -548,6 +570,7 @@ class CRM_Core_DAO_ActionSchedule extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Select', + 'label' => ts("Repetition Frequency Unit"), ], 'pseudoconstant' => [ 'callback' => 'CRM_Core_SelectValues::getRecurringFrequencyUnits', @@ -565,6 +588,9 @@ class CRM_Core_DAO_ActionSchedule extends CRM_Core_DAO { 'entity' => 'ActionSchedule', 'bao' => 'CRM_Core_BAO_ActionSchedule', 'localizable' => 0, + 'html' => [ + 'label' => ts("Repetition Frequency Interval"), + ], 'add' => '3.4', ], 'end_frequency_unit' => [ @@ -581,6 +607,7 @@ class CRM_Core_DAO_ActionSchedule extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Select', + 'label' => ts("End Frequency Unit"), ], 'pseudoconstant' => [ 'callback' => 'CRM_Core_SelectValues::getRecurringFrequencyUnits', @@ -598,6 +625,9 @@ class CRM_Core_DAO_ActionSchedule extends CRM_Core_DAO { 'entity' => 'ActionSchedule', 'bao' => 'CRM_Core_BAO_ActionSchedule', 'localizable' => 0, + 'html' => [ + 'label' => ts("End Frequency Interval"), + ], 'add' => '3.4', ], 'end_action' => [ @@ -612,6 +642,9 @@ class CRM_Core_DAO_ActionSchedule extends CRM_Core_DAO { 'entity' => 'ActionSchedule', 'bao' => 'CRM_Core_BAO_ActionSchedule', 'localizable' => 0, + 'html' => [ + 'label' => ts("End Action"), + ], 'add' => '3.4', ], 'end_date' => [ @@ -626,6 +659,9 @@ class CRM_Core_DAO_ActionSchedule extends CRM_Core_DAO { 'entity' => 'ActionSchedule', 'bao' => 'CRM_Core_BAO_ActionSchedule', 'localizable' => 0, + 'html' => [ + 'label' => ts("End Date"), + ], 'add' => '3.4', ], 'is_active' => [ @@ -891,6 +927,9 @@ class CRM_Core_DAO_ActionSchedule extends CRM_Core_DAO { 'entity' => 'ActionSchedule', 'bao' => 'CRM_Core_BAO_ActionSchedule', 'localizable' => 0, + 'html' => [ + 'label' => ts("Used For"), + ], 'add' => '4.6', ], 'filter_contact_language' => [ @@ -905,6 +944,9 @@ class CRM_Core_DAO_ActionSchedule extends CRM_Core_DAO { 'entity' => 'ActionSchedule', 'bao' => 'CRM_Core_BAO_ActionSchedule', 'localizable' => 0, + 'html' => [ + 'label' => ts("Filter Contact Language"), + ], 'add' => '4.7', ], 'communication_language' => [ @@ -919,6 +961,9 @@ class CRM_Core_DAO_ActionSchedule extends CRM_Core_DAO { 'entity' => 'ActionSchedule', 'bao' => 'CRM_Core_BAO_ActionSchedule', 'localizable' => 0, + 'html' => [ + 'label' => ts("Communication Language"), + ], 'add' => '4.7', ], 'action_schedule_created_date' => [ @@ -948,6 +993,9 @@ class CRM_Core_DAO_ActionSchedule extends CRM_Core_DAO { 'entity' => 'ActionSchedule', 'bao' => 'CRM_Core_BAO_ActionSchedule', 'localizable' => 0, + 'html' => [ + 'label' => ts("Modified Date"), + ], 'add' => '5.34', ], 'action_schedule_effective_start_date' => [ diff --git a/CRM/Core/DAO/CustomField.php b/CRM/Core/DAO/CustomField.php index 54a467b038..5bf5513bbf 100644 --- a/CRM/Core/DAO/CustomField.php +++ b/CRM/Core/DAO/CustomField.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Core/CustomField.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:6f2d1e3d531ed87fe7cac201eb7f0f13) + * (GenCodeChecksum:b1fc89dd2e7b3344c7f73579b18c1bf2) */ /** @@ -367,7 +367,7 @@ class CRM_Core_DAO_CustomField extends CRM_Core_DAO { 'data_type' => [ 'name' => 'data_type', 'type' => CRM_Utils_Type::T_STRING, - 'title' => ts('Custom Field Data Type'), + 'title' => ts('Data Type'), 'description' => ts('Controls location of data storage in extended_data table.'), 'required' => TRUE, 'maxlength' => 16, @@ -389,7 +389,7 @@ class CRM_Core_DAO_CustomField extends CRM_Core_DAO { 'html_type' => [ 'name' => 'html_type', 'type' => CRM_Utils_Type::T_STRING, - 'title' => ts('Custom Field HTML Type'), + 'title' => ts('HTML Type'), 'description' => ts('HTML types plus several built-in extended types.'), 'required' => TRUE, 'maxlength' => 32, diff --git a/CRM/Core/DAO/CustomGroup.php b/CRM/Core/DAO/CustomGroup.php index e2e0e0664d..28b423c37d 100644 --- a/CRM/Core/DAO/CustomGroup.php +++ b/CRM/Core/DAO/CustomGroup.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Core/CustomGroup.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:7c5d7207ebf9345b16f7e337010b7e40) + * (GenCodeChecksum:f259c36d8b793b6085c4756bdbeae079) */ /** @@ -433,6 +433,9 @@ class CRM_Core_DAO_CustomGroup extends CRM_Core_DAO { 'entity' => 'CustomGroup', 'bao' => 'CRM_Core_BAO_CustomGroup', 'localizable' => 0, + 'html' => [ + 'label' => ts("Table Name"), + ], 'add' => '2.0', ], 'is_multiple' => [ diff --git a/CRM/Core/DAO/Email.php b/CRM/Core/DAO/Email.php index deb198fe18..c7964f1076 100644 --- a/CRM/Core/DAO/Email.php +++ b/CRM/Core/DAO/Email.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Core/Email.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:4587ad732a1c0eee767b2180c1a79dcf) + * (GenCodeChecksum:882304460da08ef6b1a82ab6c3304be4) */ /** @@ -318,6 +318,9 @@ class CRM_Core_DAO_Email extends CRM_Core_DAO { 'entity' => 'Email', 'bao' => 'CRM_Core_BAO_Email', 'localizable' => 0, + 'html' => [ + 'label' => ts("Hold Date"), + ], 'add' => '1.1', ], 'reset_date' => [ @@ -330,6 +333,9 @@ class CRM_Core_DAO_Email extends CRM_Core_DAO { 'entity' => 'Email', 'bao' => 'CRM_Core_BAO_Email', 'localizable' => 0, + 'html' => [ + 'label' => ts("Reset Date"), + ], 'add' => '1.1', ], 'signature_text' => [ @@ -345,6 +351,9 @@ class CRM_Core_DAO_Email extends CRM_Core_DAO { 'entity' => 'Email', 'bao' => 'CRM_Core_BAO_Email', 'localizable' => 0, + 'html' => [ + 'label' => ts("Signature Text"), + ], 'add' => '3.2', ], 'signature_html' => [ @@ -360,6 +369,9 @@ class CRM_Core_DAO_Email extends CRM_Core_DAO { 'entity' => 'Email', 'bao' => 'CRM_Core_BAO_Email', 'localizable' => 0, + 'html' => [ + 'label' => ts("Signature HTML"), + ], 'add' => '3.2', ], ]; diff --git a/CRM/Core/DAO/Job.php b/CRM/Core/DAO/Job.php index 6e572a98fc..28bdc5edc5 100644 --- a/CRM/Core/DAO/Job.php +++ b/CRM/Core/DAO/Job.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Core/Job.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:b92dd2c9bec326634050c1b21ed481ec) + * (GenCodeChecksum:b6077b55d593903b9ab9f673c40dd1b1) */ /** @@ -219,6 +219,9 @@ class CRM_Core_DAO_Job extends CRM_Core_DAO { 'entity' => 'Job', 'bao' => 'CRM_Core_BAO_Job', 'localizable' => 0, + 'html' => [ + 'label' => ts("Last Run"), + ], 'add' => '4.1', ], 'scheduled_run_date' => [ @@ -233,6 +236,9 @@ class CRM_Core_DAO_Job extends CRM_Core_DAO { 'entity' => 'Job', 'bao' => 'CRM_Core_BAO_Job', 'localizable' => 0, + 'html' => [ + 'label' => ts("Scheduled Run Date"), + ], 'add' => '4.7', ], 'name' => [ diff --git a/CRM/Core/DAO/LocationType.php b/CRM/Core/DAO/LocationType.php index da58736d8f..c41f524fa4 100644 --- a/CRM/Core/DAO/LocationType.php +++ b/CRM/Core/DAO/LocationType.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Core/LocationType.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:f763e6adc20c69a5a2069b30dde6802a) + * (GenCodeChecksum:533719cf74d2886c64be987f1221f446) */ /** @@ -182,6 +182,9 @@ class CRM_Core_DAO_LocationType extends CRM_Core_DAO { 'entity' => 'LocationType', 'bao' => 'CRM_Core_BAO_LocationType', 'localizable' => 0, + 'html' => [ + 'label' => ts("Description"), + ], 'add' => '1.1', ], 'is_reserved' => [ diff --git a/CRM/Core/DAO/MappingField.php b/CRM/Core/DAO/MappingField.php index fccca1b240..7adf5847ca 100644 --- a/CRM/Core/DAO/MappingField.php +++ b/CRM/Core/DAO/MappingField.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Core/MappingField.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:df4ef7855db3ec299a284917f2d16776) + * (GenCodeChecksum:d00b7c4a9eb199ac9c5a6345aa849fe2) */ /** @@ -271,7 +271,7 @@ class CRM_Core_DAO_MappingField extends CRM_Core_DAO { 'phone_type_id' => [ 'name' => 'phone_type_id', 'type' => CRM_Utils_Type::T_INT, - 'title' => ts('Phone Type'), + 'title' => ts('Phone type ID'), 'description' => ts('Which type of phone does this number belongs.'), 'where' => 'civicrm_mapping_field.phone_type_id', 'table_name' => 'civicrm_mapping_field', diff --git a/CRM/Core/DAO/Menu.php b/CRM/Core/DAO/Menu.php index f8e1d607bb..5c50817504 100644 --- a/CRM/Core/DAO/Menu.php +++ b/CRM/Core/DAO/Menu.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Core/Menu.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:16ed0eaa3c97f84ff3f007f9f593bc15) + * (GenCodeChecksum:ef3446432c699e064aa3e685f92c798d) */ /** @@ -374,6 +374,9 @@ class CRM_Core_DAO_Menu extends CRM_Core_DAO { 'entity' => 'Menu', 'bao' => 'CRM_Core_DAO_Menu', 'localizable' => 0, + 'html' => [ + 'label' => ts("Return URL"), + ], 'add' => '2.1', ], 'return_url_args' => [ @@ -388,6 +391,9 @@ class CRM_Core_DAO_Menu extends CRM_Core_DAO { 'entity' => 'Menu', 'bao' => 'CRM_Core_DAO_Menu', 'localizable' => 0, + 'html' => [ + 'label' => ts("Return URL Arguments"), + ], 'add' => '2.1', ], 'component_id' => [ diff --git a/CRM/Core/DAO/OptionValue.php b/CRM/Core/DAO/OptionValue.php index 9d61771755..143c0016de 100644 --- a/CRM/Core/DAO/OptionValue.php +++ b/CRM/Core/DAO/OptionValue.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Core/OptionValue.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:2f36b1c5608434fbc5751aee9215a230) + * (GenCodeChecksum:82abbc6dd13b83b62c60884b1b97402f) */ /** @@ -305,6 +305,9 @@ class CRM_Core_DAO_OptionValue extends CRM_Core_DAO { 'entity' => 'OptionValue', 'bao' => 'CRM_Core_BAO_OptionValue', 'localizable' => 0, + 'html' => [ + 'label' => ts("Filter"), + ], 'add' => '1.5', ], 'is_default' => [ diff --git a/CRM/Core/DAO/Phone.php b/CRM/Core/DAO/Phone.php index 513a6621a3..2bcf574a9d 100644 --- a/CRM/Core/DAO/Phone.php +++ b/CRM/Core/DAO/Phone.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Core/Phone.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:dd0dd5e4008e0325f5b52127610c1fc4) + * (GenCodeChecksum:69c5bce12cbed1144a0c38eec1052206) */ /** @@ -190,7 +190,7 @@ class CRM_Core_DAO_Phone extends CRM_Core_DAO { 'location_type_id' => [ 'name' => 'location_type_id', 'type' => CRM_Utils_Type::T_INT, - 'title' => ts('Phone Location Type ID'), + 'title' => ts('Location Type ID'), 'description' => ts('Which Location does this phone belong to.'), 'where' => 'civicrm_phone.location_type_id', 'table_name' => 'civicrm_phone', @@ -199,7 +199,7 @@ class CRM_Core_DAO_Phone extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Select', - 'label' => ts("Phone Location Type"), + 'label' => ts("Location Type"), ], 'pseudoconstant' => [ 'table' => 'civicrm_location_type', @@ -267,6 +267,7 @@ class CRM_Core_DAO_Phone extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Text', + 'label' => ts("Phone"), ], 'add' => '1.1', ], @@ -303,6 +304,9 @@ class CRM_Core_DAO_Phone extends CRM_Core_DAO { 'entity' => 'Phone', 'bao' => 'CRM_Core_BAO_Phone', 'localizable' => 0, + 'html' => [ + 'label' => ts("Numeric"), + ], 'add' => '4.3', ], 'phone_type_id' => [ diff --git a/CRM/Core/DAO/PreferencesDate.php b/CRM/Core/DAO/PreferencesDate.php index 975e65c1ae..f6dde7b69a 100644 --- a/CRM/Core/DAO/PreferencesDate.php +++ b/CRM/Core/DAO/PreferencesDate.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Core/PreferencesDate.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:598caf8927a4796d0e05ea08e9da8e72) + * (GenCodeChecksum:938d39c03785f7ed21b560fe071ac114) */ /** @@ -145,6 +145,9 @@ class CRM_Core_DAO_PreferencesDate extends CRM_Core_DAO { 'entity' => 'PreferencesDate', 'bao' => 'CRM_Core_BAO_PreferencesDate', 'localizable' => 0, + 'html' => [ + 'label' => ts("Description"), + ], 'add' => '2.0', ], 'start' => [ @@ -158,6 +161,9 @@ class CRM_Core_DAO_PreferencesDate extends CRM_Core_DAO { 'entity' => 'PreferencesDate', 'bao' => 'CRM_Core_BAO_PreferencesDate', 'localizable' => 0, + 'html' => [ + 'label' => ts("Start"), + ], 'add' => '2.0', ], 'end' => [ @@ -185,6 +191,9 @@ class CRM_Core_DAO_PreferencesDate extends CRM_Core_DAO { 'entity' => 'PreferencesDate', 'bao' => 'CRM_Core_BAO_PreferencesDate', 'localizable' => 0, + 'html' => [ + 'label' => ts("Date Format"), + ], 'add' => '2.0', ], 'time_format' => [ @@ -199,6 +208,9 @@ class CRM_Core_DAO_PreferencesDate extends CRM_Core_DAO { 'entity' => 'PreferencesDate', 'bao' => 'CRM_Core_BAO_PreferencesDate', 'localizable' => 0, + 'html' => [ + 'label' => ts("Time Format"), + ], 'add' => '3.1', ], ]; diff --git a/CRM/Core/DAO/PrintLabel.php b/CRM/Core/DAO/PrintLabel.php index 1071eaf64b..918163549e 100644 --- a/CRM/Core/DAO/PrintLabel.php +++ b/CRM/Core/DAO/PrintLabel.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Core/PrintLabel.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:2323b196d63227f434ca565ff6b21207) + * (GenCodeChecksum:3932e344898e81897e7f59850850c513) */ /** @@ -199,6 +199,9 @@ class CRM_Core_DAO_PrintLabel extends CRM_Core_DAO { 'entity' => 'PrintLabel', 'bao' => 'CRM_Core_DAO_PrintLabel', 'localizable' => 0, + 'html' => [ + 'label' => ts("Description"), + ], 'add' => '4.4', ], 'label_format_name' => [ @@ -252,6 +255,9 @@ class CRM_Core_DAO_PrintLabel extends CRM_Core_DAO { 'bao' => 'CRM_Core_DAO_PrintLabel', 'localizable' => 0, 'serialize' => self::SERIALIZE_JSON, + 'html' => [ + 'label' => ts("Data"), + ], 'add' => '4.4', ], 'is_default' => [ @@ -305,7 +311,7 @@ class CRM_Core_DAO_PrintLabel extends CRM_Core_DAO { 'localizable' => 0, 'FKClassName' => 'CRM_Contact_DAO_Contact', 'html' => [ - 'label' => ts("Created By Contact"), + 'label' => ts("Created By"), ], 'add' => '4.4', ], diff --git a/CRM/Core/DAO/Setting.php b/CRM/Core/DAO/Setting.php index 3ddf47d4e9..ddc394fbc5 100644 --- a/CRM/Core/DAO/Setting.php +++ b/CRM/Core/DAO/Setting.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Core/Setting.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:44e2c817acb694a9b08b938031cff09e) + * (GenCodeChecksum:919e0b498a8b23dcd21ce5f17a67768a) */ /** @@ -175,6 +175,9 @@ class CRM_Core_DAO_Setting extends CRM_Core_DAO { 'bao' => 'CRM_Core_BAO_Setting', 'localizable' => 0, 'serialize' => self::SERIALIZE_PHP, + 'html' => [ + 'label' => ts("Value"), + ], 'add' => '4.1', ], 'domain_id' => [ diff --git a/CRM/Core/DAO/Tag.php b/CRM/Core/DAO/Tag.php index 6e13867601..5e51c3b352 100644 --- a/CRM/Core/DAO/Tag.php +++ b/CRM/Core/DAO/Tag.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Core/Tag.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:3b7552852ec4f0f5ea1f8654b0069fca) + * (GenCodeChecksum:6b2402718e07b7e169aaa57187f9d74e) */ /** @@ -286,7 +286,7 @@ class CRM_Core_DAO_Tag extends CRM_Core_DAO { 'created_id' => [ 'name' => 'created_id', 'type' => CRM_Utils_Type::T_INT, - 'title' => ts('Tag Created By Contact ID'), + 'title' => ts('Created By Contact ID'), 'description' => ts('FK to civicrm_contact, who created this tag'), 'where' => 'civicrm_tag.created_id', 'table_name' => 'civicrm_tag', @@ -295,7 +295,7 @@ class CRM_Core_DAO_Tag extends CRM_Core_DAO { 'localizable' => 0, 'FKClassName' => 'CRM_Contact_DAO_Contact', 'html' => [ - 'label' => ts("Tag Created By"), + 'label' => ts("Created By"), ], 'add' => '3.4', ], diff --git a/CRM/Core/DAO/UFField.php b/CRM/Core/DAO/UFField.php index 5c35d373ef..f828f10b9e 100644 --- a/CRM/Core/DAO/UFField.php +++ b/CRM/Core/DAO/UFField.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Core/UFField.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:1beadf70c2e732317903d806dd2beee8) + * (GenCodeChecksum:95c6467cd16f7519785b3a271b771421) */ /** @@ -389,7 +389,7 @@ class CRM_Core_DAO_UFField extends CRM_Core_DAO { 'location_type_id' => [ 'name' => 'location_type_id', 'type' => CRM_Utils_Type::T_INT, - 'title' => ts('Profile Field Location Type ID'), + 'title' => ts('Location Type ID'), 'description' => ts('Location type of this mapping, if required'), 'where' => 'civicrm_uf_field.location_type_id', 'table_name' => 'civicrm_uf_field', @@ -398,7 +398,7 @@ class CRM_Core_DAO_UFField extends CRM_Core_DAO { 'localizable' => 0, 'FKClassName' => 'CRM_Core_DAO_LocationType', 'html' => [ - 'label' => ts("Profile Field Location Type"), + 'label' => ts("Location Type"), ], 'add' => '1.3', ], diff --git a/CRM/Core/DAO/UFGroup.php b/CRM/Core/DAO/UFGroup.php index e38574ad4e..8d08522b03 100644 --- a/CRM/Core/DAO/UFGroup.php +++ b/CRM/Core/DAO/UFGroup.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Core/UFGroup.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:19174c1e0d6fd0b24b5192acd551b97d) + * (GenCodeChecksum:ed0e5ca993ee64645dfc76a35f3f6d8e) */ /** @@ -372,6 +372,7 @@ class CRM_Core_DAO_UFGroup extends CRM_Core_DAO { 'localizable' => 1, 'html' => [ 'type' => 'TextArea', + 'label' => ts("Pre Help"), ], 'add' => '1.2', ], @@ -420,6 +421,9 @@ class CRM_Core_DAO_UFGroup extends CRM_Core_DAO { 'entity' => 'UFGroup', 'bao' => 'CRM_Core_BAO_UFGroup', 'localizable' => 0, + 'html' => [ + 'label' => ts("Post URL"), + ], 'add' => '1.4', ], 'add_to_group_id' => [ diff --git a/CRM/Core/I18n/SchemaStructure.php b/CRM/Core/I18n/SchemaStructure.php index 03fda988b5..3752833f5d 100644 --- a/CRM/Core/I18n/SchemaStructure.php +++ b/CRM/Core/I18n/SchemaStructure.php @@ -440,10 +440,10 @@ class CRM_Core_I18n_SchemaStructure { 'type' => "Text", ], 'initial_amount_label' => [ - 'type' => "Text", + 'label' => "Initial Amount Label", ], 'initial_amount_help_text' => [ - 'type' => "Text", + 'label' => "Initial Amount Help Text", ], 'thankyou_title' => [ 'type' => "Text", @@ -552,6 +552,7 @@ class CRM_Core_I18n_SchemaStructure { 'type' => "TextArea", 'rows' => "4", 'cols' => "80", + 'label' => "Pre Help", ], 'help_post' => [ 'type' => "TextArea", @@ -601,16 +602,19 @@ class CRM_Core_I18n_SchemaStructure { 'type' => "TextArea", 'rows' => "2", 'cols' => "60", + 'label' => "Description", ], 'help_pre' => [ 'type' => "TextArea", 'rows' => "2", 'cols' => "60", + 'label' => "Pre Help", ], 'help_post' => [ 'type' => "TextArea", 'rows' => "2", 'cols' => "60", + 'label' => "Post Help", ], ], 'civicrm_pcp_block' => [ @@ -703,11 +707,13 @@ class CRM_Core_I18n_SchemaStructure { 'type' => "TextArea", 'rows' => "4", 'cols' => "60", + 'label' => "Waitlist Text", ], 'approval_req_text' => [ 'type' => "TextArea", 'rows' => "4", 'cols' => "60", + 'label' => "Approval Required Text", ], 'template_title' => [ 'type' => "Text", diff --git a/CRM/Cxn/DAO/Cxn.php b/CRM/Cxn/DAO/Cxn.php index e11a26f4fa..73804c3b08 100644 --- a/CRM/Cxn/DAO/Cxn.php +++ b/CRM/Cxn/DAO/Cxn.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Cxn/Cxn.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:9986281f57b7aeab07c03d19f80ef468) + * (GenCodeChecksum:fcd0108fbc34d4c74ffb271318b16bd7) */ /** @@ -199,6 +199,9 @@ class CRM_Cxn_DAO_Cxn extends CRM_Core_DAO { 'entity' => 'Cxn', 'bao' => 'CRM_Cxn_BAO_Cxn', 'localizable' => 0, + 'html' => [ + 'label' => ts("Secret"), + ], 'add' => '4.6', ], 'perm' => [ @@ -211,6 +214,9 @@ class CRM_Cxn_DAO_Cxn extends CRM_Core_DAO { 'entity' => 'Cxn', 'bao' => 'CRM_Cxn_BAO_Cxn', 'localizable' => 0, + 'html' => [ + 'label' => ts("Permissions"), + ], 'add' => '4.6', ], 'options' => [ @@ -224,6 +230,9 @@ class CRM_Cxn_DAO_Cxn extends CRM_Core_DAO { 'bao' => 'CRM_Cxn_BAO_Cxn', 'localizable' => 0, 'serialize' => self::SERIALIZE_JSON, + 'html' => [ + 'label' => ts("Options"), + ], 'add' => '4.6', ], 'is_active' => [ @@ -251,6 +260,9 @@ class CRM_Cxn_DAO_Cxn extends CRM_Core_DAO { 'entity' => 'Cxn', 'bao' => 'CRM_Cxn_BAO_Cxn', 'localizable' => 0, + 'html' => [ + 'label' => ts("Created Date"), + ], 'add' => '4.6', ], 'modified_date' => [ @@ -265,6 +277,9 @@ class CRM_Cxn_DAO_Cxn extends CRM_Core_DAO { 'entity' => 'Cxn', 'bao' => 'CRM_Cxn_BAO_Cxn', 'localizable' => 0, + 'html' => [ + 'label' => ts("Modified Date"), + ], 'add' => '4.6', ], 'fetched_date' => [ @@ -279,6 +294,9 @@ class CRM_Cxn_DAO_Cxn extends CRM_Core_DAO { 'entity' => 'Cxn', 'bao' => 'CRM_Cxn_BAO_Cxn', 'localizable' => 0, + 'html' => [ + 'label' => ts("Fetched Date"), + ], 'add' => '4.6', ], ]; diff --git a/CRM/Event/DAO/Event.php b/CRM/Event/DAO/Event.php index c48281a1f2..0ce9d67f47 100644 --- a/CRM/Event/DAO/Event.php +++ b/CRM/Event/DAO/Event.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Event/Event.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:11e4962f380ac2cc33f742cd8881458c) + * (GenCodeChecksum:cc5512176c45d616e0b9571e6d8e033e) */ /** @@ -790,6 +790,7 @@ class CRM_Event_DAO_Event extends CRM_Core_DAO { 'html' => [ 'type' => 'Select Date', 'formatType' => 'activityDateTime', + 'label' => ts("Registration Start Date"), ], 'add' => '1.8', ], @@ -806,6 +807,7 @@ class CRM_Event_DAO_Event extends CRM_Core_DAO { 'html' => [ 'type' => 'Select Date', 'formatType' => 'activityDateTime', + 'label' => ts("Registration End Date"), ], 'add' => '1.8', ], @@ -894,6 +896,7 @@ class CRM_Event_DAO_Event extends CRM_Core_DAO { 'serialize' => self::SERIALIZE_SEPARATOR_TRIMMED, 'html' => [ 'type' => 'Select', + 'label' => ts("Payment Processors"), ], 'pseudoconstant' => [ 'table' => 'civicrm_payment_processor', @@ -1174,6 +1177,7 @@ class CRM_Event_DAO_Event extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Text', + 'label' => ts("CC Confirm"), ], 'add' => '1.7', ], @@ -1191,6 +1195,7 @@ class CRM_Event_DAO_Event extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Text', + 'label' => ts("BCC Confirm"), ], 'add' => '1.7', ], @@ -1455,6 +1460,7 @@ class CRM_Event_DAO_Event extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'CheckBox', + 'label' => ts("Requires Approval"), ], 'add' => '3.0', ], @@ -1470,6 +1476,7 @@ class CRM_Event_DAO_Event extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Text', + 'label' => ts("Expiration Time"), ], 'add' => '3.0', ], @@ -1519,6 +1526,7 @@ class CRM_Event_DAO_Event extends CRM_Core_DAO { 'localizable' => 1, 'html' => [ 'type' => 'TextArea', + 'label' => ts("Waitlist Text"), ], 'add' => '3.0', ], @@ -1536,6 +1544,7 @@ class CRM_Event_DAO_Event extends CRM_Core_DAO { 'localizable' => 1, 'html' => [ 'type' => 'TextArea', + 'label' => ts("Approval Required Text"), ], 'add' => '3.0', ], @@ -1622,6 +1631,7 @@ class CRM_Event_DAO_Event extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Select', + 'label' => ts("Currency"), ], 'pseudoconstant' => [ 'table' => 'civicrm_currency', diff --git a/CRM/Financial/DAO/PaymentProcessorType.php b/CRM/Financial/DAO/PaymentProcessorType.php index 5fcb672ece..2481bbc4cd 100644 --- a/CRM/Financial/DAO/PaymentProcessorType.php +++ b/CRM/Financial/DAO/PaymentProcessorType.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Financial/PaymentProcessorType.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:a9f8f7d9090a8eba71f41739915ea194) + * (GenCodeChecksum:7dd63a2a740ce4cfcfbd5a00cef55f6a) */ /** @@ -461,6 +461,7 @@ class CRM_Financial_DAO_PaymentProcessorType extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Select', + 'label' => ts("Billing Mode"), ], 'pseudoconstant' => [ 'callback' => 'CRM_Core_SelectValues::billingMode', diff --git a/CRM/Mailing/DAO/Mailing.php b/CRM/Mailing/DAO/Mailing.php index 1ca08f185e..d5bc008e10 100644 --- a/CRM/Mailing/DAO/Mailing.php +++ b/CRM/Mailing/DAO/Mailing.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Mailing/Mailing.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:cea36c1d0da157e6d5b42b505eb44a53) + * (GenCodeChecksum:67ae25cd06e3807310ce8ce889f68ce6) */ /** @@ -620,6 +620,7 @@ class CRM_Mailing_DAO_Mailing extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Text', + 'label' => ts("Reply-To Email"), ], 'add' => NULL, ], @@ -668,6 +669,7 @@ class CRM_Mailing_DAO_Mailing extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Text', + 'label' => ts("Subject"), ], 'add' => NULL, ], @@ -681,6 +683,9 @@ class CRM_Mailing_DAO_Mailing extends CRM_Core_DAO { 'entity' => 'Mailing', 'bao' => 'CRM_Mailing_BAO_Mailing', 'localizable' => 0, + 'html' => [ + 'label' => ts("Body Text"), + ], 'add' => NULL, ], 'body_html' => [ @@ -693,6 +698,9 @@ class CRM_Mailing_DAO_Mailing extends CRM_Core_DAO { 'entity' => 'Mailing', 'bao' => 'CRM_Mailing_BAO_Mailing', 'localizable' => 0, + 'html' => [ + 'label' => ts("Body HTML"), + ], 'add' => NULL, ], 'url_tracking' => [ @@ -707,6 +715,7 @@ class CRM_Mailing_DAO_Mailing extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'CheckBox', + 'label' => ts("Url Tracking"), ], 'add' => NULL, ], @@ -722,6 +731,7 @@ class CRM_Mailing_DAO_Mailing extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'CheckBox', + 'label' => ts("Forward Replies"), ], 'add' => NULL, ], @@ -737,6 +747,7 @@ class CRM_Mailing_DAO_Mailing extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'CheckBox', + 'label' => ts("Auto Responder"), ], 'add' => NULL, ], @@ -796,6 +807,7 @@ class CRM_Mailing_DAO_Mailing extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'CheckBox', + 'label' => ts("Overwrite VERP"), ], 'add' => '2.2', ], @@ -846,6 +858,9 @@ class CRM_Mailing_DAO_Mailing extends CRM_Core_DAO { 'entity' => 'Mailing', 'bao' => 'CRM_Mailing_BAO_Mailing', 'localizable' => 0, + 'html' => [ + 'label' => ts("Modified Date"), + ], 'add' => '4.7', ], 'scheduled_id' => [ @@ -1084,6 +1099,9 @@ class CRM_Mailing_DAO_Mailing extends CRM_Core_DAO { 'entity' => 'Mailing', 'bao' => 'CRM_Mailing_BAO_Mailing', 'localizable' => 0, + 'html' => [ + 'label' => ts("Email Selection Method"), + ], 'pseudoconstant' => [ 'callback' => 'CRM_Core_SelectValues::emailSelectMethods', ], diff --git a/CRM/Mailing/DAO/MailingComponent.php b/CRM/Mailing/DAO/MailingComponent.php index 886aae7e87..9f80e454e8 100644 --- a/CRM/Mailing/DAO/MailingComponent.php +++ b/CRM/Mailing/DAO/MailingComponent.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Mailing/MailingComponent.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:fee560d72396f0f954737482f19985cb) + * (GenCodeChecksum:a2617155e598c9da3b251b0a7a9daa3b) */ /** @@ -169,6 +169,9 @@ class CRM_Mailing_DAO_MailingComponent extends CRM_Core_DAO { 'entity' => 'MailingComponent', 'bao' => 'CRM_Mailing_BAO_MailingComponent', 'localizable' => 0, + 'html' => [ + 'label' => ts("Subject"), + ], 'add' => NULL, ], 'body_html' => [ @@ -202,6 +205,7 @@ class CRM_Mailing_DAO_MailingComponent extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'TextArea', + 'label' => ts("Body in Text Format"), ], 'add' => NULL, ], diff --git a/CRM/Member/DAO/Membership.php b/CRM/Member/DAO/Membership.php index 3a2d32ac72..044fd62a85 100644 --- a/CRM/Member/DAO/Membership.php +++ b/CRM/Member/DAO/Membership.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Member/Membership.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:5be0e02d65ec73885d938398aac05a29) + * (GenCodeChecksum:595cdfb5731f1391fee016c91e425124) */ /** @@ -441,6 +441,7 @@ class CRM_Member_DAO_Membership extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Text', + 'label' => ts("Maximum number of related memberships"), ], 'add' => '4.3', ], diff --git a/CRM/Member/DAO/MembershipStatus.php b/CRM/Member/DAO/MembershipStatus.php index bec7aee459..55fa64776f 100644 --- a/CRM/Member/DAO/MembershipStatus.php +++ b/CRM/Member/DAO/MembershipStatus.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Member/MembershipStatus.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:7a244bc9a0db34ad31adc004d97e1945) + * (GenCodeChecksum:af39fa64c6d191dcc6c1fc2c627b38fd) */ /** @@ -230,6 +230,7 @@ class CRM_Member_DAO_MembershipStatus extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Select', + 'label' => ts("Start Event"), ], 'pseudoconstant' => [ 'callback' => 'CRM_Core_SelectValues::eventDate', @@ -250,6 +251,7 @@ class CRM_Member_DAO_MembershipStatus extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Select', + 'label' => ts("Start Event Adjust Unit"), ], 'pseudoconstant' => [ 'callback' => 'CRM_Core_SelectValues::unitList', @@ -266,6 +268,9 @@ class CRM_Member_DAO_MembershipStatus extends CRM_Core_DAO { 'entity' => 'MembershipStatus', 'bao' => 'CRM_Member_BAO_MembershipStatus', 'localizable' => 0, + 'html' => [ + 'label' => ts("Start Event Adjust Interval"), + ], 'add' => '1.5', ], 'end_event' => [ @@ -282,6 +287,7 @@ class CRM_Member_DAO_MembershipStatus extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Select', + 'label' => ts("End Event"), ], 'pseudoconstant' => [ 'callback' => 'CRM_Core_SelectValues::eventDate', @@ -302,6 +308,7 @@ class CRM_Member_DAO_MembershipStatus extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Select', + 'label' => ts("End Event Adjust Unit"), ], 'pseudoconstant' => [ 'callback' => 'CRM_Core_SelectValues::unitList', @@ -318,6 +325,9 @@ class CRM_Member_DAO_MembershipStatus extends CRM_Core_DAO { 'entity' => 'MembershipStatus', 'bao' => 'CRM_Member_BAO_MembershipStatus', 'localizable' => 0, + 'html' => [ + 'label' => ts("End Event Adjust Interval"), + ], 'add' => '1.5', ], 'is_current_member' => [ diff --git a/CRM/Member/DAO/MembershipType.php b/CRM/Member/DAO/MembershipType.php index 17334ac6f8..5ee135d522 100644 --- a/CRM/Member/DAO/MembershipType.php +++ b/CRM/Member/DAO/MembershipType.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Member/MembershipType.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:4b310d2804aad4a7fca0bbe630da5635) + * (GenCodeChecksum:9fd7f864fc6d70c8a1fad482ded120ff) */ /** @@ -284,7 +284,7 @@ class CRM_Member_DAO_MembershipType extends CRM_Core_DAO { 'description' => [ 'name' => 'description', 'type' => CRM_Utils_Type::T_STRING, - 'title' => ts('Membership Type Description'), + 'title' => ts('Description'), 'description' => ts('Description of Membership Type'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, @@ -341,7 +341,7 @@ class CRM_Member_DAO_MembershipType extends CRM_Core_DAO { 'minimum_fee' => [ 'name' => 'minimum_fee', 'type' => CRM_Utils_Type::T_MONEY, - 'title' => ts('Membership Type Minimum Fee'), + 'title' => ts('Minimum Fee'), 'description' => ts('Minimum fee for this membership (0 for free/complimentary memberships).'), 'precision' => [ 18, @@ -466,6 +466,9 @@ class CRM_Member_DAO_MembershipType extends CRM_Core_DAO { 'bao' => 'CRM_Member_BAO_MembershipType', 'localizable' => 0, 'serialize' => self::SERIALIZE_SEPARATOR_TRIMMED, + 'html' => [ + 'label' => ts("Relationship Direction"), + ], 'add' => '1.7', ], 'max_related' => [ @@ -564,6 +567,7 @@ class CRM_Member_DAO_MembershipType extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Radio', + 'label' => ts("Auto-Renew"), ], 'pseudoconstant' => [ 'callback' => 'CRM_Core_SelectValues::memberAutoRenew', diff --git a/CRM/PCP/DAO/PCP.php b/CRM/PCP/DAO/PCP.php index 3fe37dc38e..1a1e564cdf 100644 --- a/CRM/PCP/DAO/PCP.php +++ b/CRM/PCP/DAO/PCP.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/PCP/PCP.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:ad3dcb71cd89052b43154c9e9ee31115) + * (GenCodeChecksum:5405d8f158e59888df119d746487fb3d) */ /** @@ -252,6 +252,7 @@ class CRM_PCP_DAO_PCP extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'TextArea', + 'label' => ts("Intro Text"), ], 'add' => '2.2', ], @@ -267,6 +268,7 @@ class CRM_PCP_DAO_PCP extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'TextArea', + 'label' => ts("Page Text"), ], 'add' => '2.2', ], diff --git a/CRM/Price/DAO/LineItem.php b/CRM/Price/DAO/LineItem.php index 3370f60351..08cf6c7d9e 100644 --- a/CRM/Price/DAO/LineItem.php +++ b/CRM/Price/DAO/LineItem.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Price/LineItem.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:8455f09e75cc04248153812b7fdd6741) + * (GenCodeChecksum:2381e5a16fc9ea64b01f4967fcf58a95) */ /** @@ -311,6 +311,7 @@ class CRM_Price_DAO_LineItem extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Text', + 'label' => ts("Unit Price"), ], 'add' => '1.7', ], diff --git a/CRM/Price/DAO/PriceField.php b/CRM/Price/DAO/PriceField.php index a2fd787ec5..ef98d0a5c2 100644 --- a/CRM/Price/DAO/PriceField.php +++ b/CRM/Price/DAO/PriceField.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Price/PriceField.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:55cd5fb830fb3ab53627aad3520b0740) + * (GenCodeChecksum:765803860f40597adb6e9bf050275fb4) */ /** @@ -278,6 +278,7 @@ class CRM_Price_DAO_PriceField extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Select', + 'label' => ts("Html Type"), ], 'pseudoconstant' => [ 'callback' => 'CRM_Price_BAO_PriceField::htmlTypes', diff --git a/CRM/Price/DAO/PriceFieldValue.php b/CRM/Price/DAO/PriceFieldValue.php index 329c13e053..684eb64b42 100644 --- a/CRM/Price/DAO/PriceFieldValue.php +++ b/CRM/Price/DAO/PriceFieldValue.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Price/PriceFieldValue.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:dfd666e126f31f5c1f5f9c7c47050d4f) + * (GenCodeChecksum:336ef7c5bd918ad66be9bd024d4f3050) */ /** @@ -284,6 +284,7 @@ class CRM_Price_DAO_PriceFieldValue extends CRM_Core_DAO { 'localizable' => 1, 'html' => [ 'type' => 'TextArea', + 'label' => ts("Description"), ], 'add' => '3.3', ], @@ -302,6 +303,7 @@ class CRM_Price_DAO_PriceFieldValue extends CRM_Core_DAO { 'localizable' => 1, 'html' => [ 'type' => 'TextArea', + 'label' => ts("Pre Help"), ], 'add' => '4.7', ], @@ -320,6 +322,7 @@ class CRM_Price_DAO_PriceFieldValue extends CRM_Core_DAO { 'localizable' => 1, 'html' => [ 'type' => 'TextArea', + 'label' => ts("Post Help"), ], 'add' => '4.7', ], @@ -356,6 +359,7 @@ class CRM_Price_DAO_PriceFieldValue extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Text', + 'label' => ts("Count"), ], 'add' => '3.3', ], @@ -372,6 +376,7 @@ class CRM_Price_DAO_PriceFieldValue extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Text', + 'label' => ts("Max Value"), ], 'add' => '3.3', ], @@ -422,6 +427,7 @@ class CRM_Price_DAO_PriceFieldValue extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Text', + 'label' => ts("Number of terms"), ], 'add' => '4.3', ], diff --git a/CRM/Price/DAO/PriceSet.php b/CRM/Price/DAO/PriceSet.php index e959be77d4..570acbf5d7 100644 --- a/CRM/Price/DAO/PriceSet.php +++ b/CRM/Price/DAO/PriceSet.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Price/PriceSet.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:da319316754e17cc5f9447c9e2b095ad) + * (GenCodeChecksum:935483d60be1711ca878bba629e3f00b) */ /** @@ -177,6 +177,7 @@ class CRM_Price_DAO_PriceSet extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Number', + 'label' => ts("ID"), ], 'add' => '1.8', ], @@ -217,6 +218,7 @@ class CRM_Price_DAO_PriceSet extends CRM_Core_DAO { 'localizable' => 0, 'html' => [ 'type' => 'Text', + 'label' => ts("Name"), ], 'add' => '1.8', ], -- 2.25.1