0
有沒有什麼辦法可以使用Silex實現ACL,但是沒有Doctrine ORM?沒有ORM的Silex symfony ACL
使用實體,我們可以處理這個問題是這樣
$oidd = new Symfony\Component\Security\Acl\Domain\ObjectIdentity::fromDomainObject($message(\);
$acl = $app['security.acl.provider']->createAcl($oidd);
// the current user is the owner
$sid = Symfony\Component\Security\Acl\Domain\UserSecurityIdentity::fromAccount($currentUser);
$acl->insertObjectAce($sid, Symfony\Component\Security\Acl\Permission\MaskBuilder::MASK_OWNER);
任何解決方案?
鏈接的項目使用Doctrine ORM。 –