Added permission

This commit is contained in:
CiviWare Solutions 2018-06-29 01:18:15 +05:30
parent a5a49b5ec0
commit f1fa021847

View File

@ -134,30 +134,15 @@ function batchexportperm_civicrm_entityTypes(&$entityTypes) {
_batchexportperm_civix_civicrm_entityTypes($entityTypes); _batchexportperm_civix_civicrm_entityTypes($entityTypes);
} }
// --- Functions below this ship commented out. Uncomment as required. ---
/** /**
* Implements hook_civicrm_preProcess(). * Implements hook_civicrm_permission().
* *
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_preProcess * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_permission
* */
function batchexportperm_civicrm_preProcess($formName, &$form) { function deleterelationships_civicrm_permission(&$permissions) {
$prefix = ts('CiviCRM') . ': ';
} // */ $permissions['edit exported contributions'] = [
$prefix . ts('Edit exported contributions'),
/** ts('Edit exported contributions'),
* Implements hook_civicrm_navigationMenu(). ];
* }
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_navigationMenu
*
function batchexportperm_civicrm_navigationMenu(&$menu) {
_batchexportperm_civix_insert_navigation_menu($menu, 'Mailings', array(
'label' => E::ts('New subliminal message'),
'name' => 'mailing_subliminal_message',
'url' => 'civicrm/mailing/subliminal',
'permission' => 'access CiviMail',
'operator' => 'OR',
'separator' => 0,
));
_batchexportperm_civix_navigationMenu($menu);
} // */