I'm using Symfony2.1 for my website. This website is about a voting system to elect some artists and there is different stages in this voting system. For example, in the first stage users can register as members or artists, but in the second stage that would be impossible..etc.And in the last stage, members can vote etc..
Anyway, so I have a parameter "stage" in my config.yml which has a numeric value (1, 2 or 3) according to the period of time in which we are.
I woud like to "prevent" some actions according to the stage we are.
So my first idea was to use in the controller RegisterAction for example :
$stage = $this->container->getParameter('stage');
if ($stage == 1) { //some code }
But I think that defining a custom annotation before each action would be better, for example :
/**
* @Phasis(stage = 1)
*/
How could I do that ? And do you think it is appropriate ? (I'm a beginner in computer science!)
Thanks a lot for your help