. * * The interactive user interfaces in modified source and object code versions * of this program must display Appropriate Legal Notices, as required under * Section 5 of the GNU Affero General Public License version 3. * * In accordance with Section 7(b) of the GNU Affero General Public License version 3, * these Appropriate Legal Notices must retain the display of the "EspoCRM" word. ************************************************************************/ namespace Espo\Classes\Acl\Import; use Espo\Entities\Import; use Espo\Entities\User; use Espo\ORM\Entity; use Espo\Core\Acl\AccessEntityDeleteChecker; use Espo\Core\Acl\AccessEntityReadChecker; use Espo\Core\Acl\ScopeData; /** * @implements AccessEntityReadChecker * @implements AccessEntityDeleteChecker */ class AccessChecker implements AccessEntityReadChecker, AccessEntityDeleteChecker { public function check(User $user, ScopeData $data): bool { return $data->isTrue(); } public function checkRead(User $user, ScopeData $data): bool { return $data->isTrue(); } public function checkDelete(User $user, ScopeData $data): bool { return $data->isTrue(); } public function checkEntityRead(User $user, Entity $entity, ScopeData $data): bool { if ($user->isAdmin()) { return true; } if ($user->getId() === $entity->get('createdById')) { return true; } return false; } public function checkEntityDelete(User $user, Entity $entity, ScopeData $data): bool { if ($user->isAdmin()) { return true; } if ($user->getId() === $entity->get('createdById')) { return true; } return false; } }