PHP Fatal error: Call to undefined method ACLController::requireSecurityGroup

Good morning, I have the following problem:

PHP Fatal error: Call to undefined method ACLController::requireSecurityGroup() in /var/www/html/sugarcrm/modules/AOR_Reports/AOR_Report.php on line 658

Code line 658:

if(file_exists(‘modules/SecurityGroups/SecurityGroup.php’)){
/* BEGIN - SECURITY GROUPS */
if($module->bean_implements(‘ACL’) && ACLController::requireSecurityGroup($module->module_dir, ‘list’) )
{
require_once(‘modules/SecurityGroups/SecurityGroup.php’);
global $current_user;
$owner_where = $module->getOwnerWhere($current_user->id);
$group_where = SecurityGroup::getGroupWhere($alias,$module->module_dir,$current_user->id);
if(!empty($owner_where)){
$where .= " AND (". $owner_where." or “.$group_where.”) ";
} else {
$where .= ’ AND '. $group_where;

Can someone help? tks