X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FAdmin%2FForm%2FRelationshipType.php;h=3ef04472ab75547004ba0e911996ad70b8487628;hb=1a5a38d08a3390b1e14836f918318347696bf145;hp=fde8d4c3b3d4b0bba4910d9662ad130e6b80c9bd;hpb=c9baa85a27f776bc2b49bc5d38611f537cf19f30;p=civicrm-core.git diff --git a/CRM/Admin/Form/RelationshipType.php b/CRM/Admin/Form/RelationshipType.php index fde8d4c3b3..3ef04472ab 100644 --- a/CRM/Admin/Form/RelationshipType.php +++ b/CRM/Admin/Form/RelationshipType.php @@ -44,6 +44,7 @@ class CRM_Admin_Form_RelationshipType extends CRM_Admin_Form { * Fields may have keys * - name (required to show in tpl from the array) * - description (optional, will appear below the field) + * Auto-added by setEntityFieldsMetadata unless specified here (use description => '' to hide) * - not-auto-addable - this class will not attempt to add the field using addField. * (this will be automatically set if the field does not have html in it's metadata * or is not a core field on the form's entity). @@ -70,11 +71,16 @@ class CRM_Admin_Form_RelationshipType extends CRM_Admin_Form { 'name' => 'label_b_a', 'description' => ts("Label for the relationship from Contact B to Contact A. EXAMPLE: Contact B is 'Child of' Contact A. You may leave this blank for relationships where the name is the same in both directions (e.g. Spouse).") ], - 'description' => ['name' => 'description'], + 'description' => [ + 'name' => 'description', + 'description' => '' + ], 'contact_types_a' => ['name' => 'contact_types_a', 'not-auto-addable' => TRUE], 'contact_types_b' => ['name' => 'contact_types_b', 'not-auto-addable' => TRUE], 'is_active' => ['name' => 'is_active'], ]; + + self::setEntityFieldsMetadata(); } /**