Re: [symfony-users] Implementing an existing ACL API in symfony

2010-08-17 Thread Gareth McCumskey
We actually implemented our own ACL system. We used symfony's builtin user session management features (i.e. $this0>getUser()->setAuthenticated(true) etc) but not any of sfGuards special functionality because our needs were too complex. We also send an authentication request to our ACL server to c

[symfony-users] Implementing an existing ACL API in symfony

2010-08-16 Thread catchamonkey
Hi all, What are your thoughts on implementing an existing ACL which is accessed through an API into symfony 1.4? I would ideally like to use sfGuard and replace the main elements of signin, signout and any permission calls et al. Do you think it would be best to start from scratch or build on to