Are you talking about the ACL system? It supports class and object
permissions.
http://symfony.com/doc/current/cookbook/security/acl.html
--
If you want to report a vulnerability issue on symfony, please send it to
security at symfony-project.com
You received this message because you are subs
It'll be in the request object. $this->get('request')->request->get('foo');
--
If you want to report a vulnerability issue on symfony, please send it to
security at symfony-project.com
You received this message because you are subscribed to the Google
Groups "symfony users" group.
To post to th
I'm developing several bundles under a common top-level namespace (right
now, Problematic). Is there any way to group them together in my config.yml,
so that instead of:
problematic_foo:
# some configuration
problematic_bar:
# some configuration
I can do something like:
problematic:
llection();
> }
>
> /**
> * @var integer $id
> *
> * @Column(name="id", type="integer", nullable=true)
> * @Id
> * @GeneratedValue(strategy="IDENTITY")
> */
> protected $id;
>
> /**
&
I'm looking for an appropriate way to reduce coupling in a messaging bundle
I'm writing, so that I can easily use it between applications.
Each instance of the Message entity should have a sender and a recipient,
instanceof Symfony\Component\Security\Core\User\UserInterface, which I can
require
I'm currently working on developing an app that will not only accept
user registrations, but will allow visitors to go through almost the
entire flow of the site without creating an account or logging in. Our
design ideas look something like this (suggestions/improvements
welcome):
* When a user l
Forgot to mention, this is being built in Symfony2
On May 11, 9:56 am, Problematic wrote:
> I'm currently working on developing an app that will not only accept
> user registrations, but will allow visitors to go through almost the
> entire flow of the site without creating an acco
do with a listener? It seems like if I can automatically
notify the dispatcher of a list of events that can be defined in code,
that would be more flexible and fit what I'm trying to do more
completely.
On May 9, 12:33 pm, Christophe COEVOET wrote:
> Le 09/05/2011 20:24,
I'm building an app in Symfony2 that has a social-driven aspect (many
actions a user performs on the site will show up in a "news feed"-
style list for others to view). I've determined that the sf2 event
dispatcher/listener system is the best way to handle this, but I've
run into something of a sna