From d9a37cbcc18a593635360ce05f236dcd9ec7d93e Mon Sep 17 00:00:00 2001 From: Herb Date: Mon, 16 Apr 2018 19:45:37 -0400 Subject: [PATCH] issue 63 clarify permission descriptions (#11981) * issue 63 clarify permission descriptions * fix syntax --- CRM/Core/Permission.php | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/CRM/Core/Permission.php b/CRM/Core/Permission.php index b9f344975f..28034d95f7 100644 --- a/CRM/Core/Permission.php +++ b/CRM/Core/Permission.php @@ -724,7 +724,7 @@ class CRM_Core_Permission { ), 'skip IDS check' => array( $prefix . ts('skip IDS check'), - ts('IDS system is bypassed for users with this permission. Prevents false errors for admin users.'), + ts('Warning: Give to trusted roles only; this permission has security implications. IDS system is bypassed for users with this permission. Prevents false errors for admin users.'), ), 'access uploaded files' => array( $prefix . ts('access uploaded files'), @@ -732,21 +732,23 @@ class CRM_Core_Permission { ), 'profile listings and forms' => array( $prefix . ts('profile listings and forms'), - ts('Access the profile Search form and listings'), + ts('Warning: Give to trusted roles only; this permission has privacy implications. Add/edit data in online forms and access public searchable directories.'), ), 'profile listings' => array( $prefix . ts('profile listings'), + ts('Warning: Give to trusted roles only; this permission has privacy implications. Access public searchable directories.'), ), 'profile create' => array( $prefix . ts('profile create'), - ts('Use profiles in Create mode'), + ts('Add data in a profile form.'), ), 'profile edit' => array( $prefix . ts('profile edit'), - ts('Use profiles in Edit mode'), + ts('Edit data in a profile form.'), ), 'profile view' => array( $prefix . ts('profile view'), + ts('View data in a profile.'), ), 'access all custom data' => array( $prefix . ts('access all custom data'), @@ -760,8 +762,8 @@ class CRM_Core_Permission { $prefix . ts('Delete activities'), ), 'access CiviCRM' => array( - $prefix . ts('access CiviCRM'), - ts('Master control for access to the main CiviCRM backend and API'), + $prefix . ts('access CiviCRM backend and API'), + ts('Master control for access to the main CiviCRM backend and API. Give to trusted roles only.'), ), 'access Contact Dashboard' => array( $prefix . ts('access Contact Dashboard'), -- 2.25.1