Tried adding a custom ACL to disallow DELETE as per
https://enricosimonetti.com/powerful-customisations-with-sugars-acl/
but this does NOT seem to work when I try it on Sugar 13.0.3
custom\Extension\modules\Contacts\Ext\Vardefs\acl.php
Fullscreen
1
$dictionary['Contacts']['acls']['SugarACLDenyDelete'] = true;
custom\data\acl\SugarACLDenyDelete.php
Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
class SugarACLDenyDelete extends SugarACLStrategy {
// allowed user ids
protected $user_ids_to_allow = array(
);
// denied actions: example was READ-ONLY, we want to deny only DELETE
protected $denied_actions = array(
//'edit',
'delete',
//'massupdate',
//'import',
);
// our custom method to check permissions
protected function _canUserWrite($context)
{
// retrieve user from context
$user = $this->getCurrentUser($context);
// allow only admin users or special users access
if(/*$user->isAdmin() || */in_array($user->id, $this->user_ids_to_allow)) { //we DENY to ADMINS too
Can anyone point me to a way that works in v13+?