I have an admin application with various modules set up. In one of the modules a user can schedule an "import" can often take a considerable amount of time to complete. While the import is running, no changes should be made to the database.
I'm looking for a solution to lock down the admin while the import is running. I want to prevent any modules from making admin changes through the forms. How can I insert a global logic check to see if an import is running? The alternative would be to have the code for the logic check in every module action, which is not preferable. The only other way I can think of is to put the code in the layout, but you're not supposed to run queries from the templates. -- 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 this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en
