This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/application/Espo/Core/Acl.php
T
2013-11-27 15:22:53 +02:00

20 lines
224 B
PHP

<?php
namespace Espo\Core;
class Acl
{
private $data = array();
public function __construct(\Espo\Entities\User $user)
{
$this->user = $user;
}
public function check($subject, $action)
{
return true;
}
}