I'm trying to figure out how to implement a system that will restrict users in doing certain operations when limit is reached. For example, assuming we have a free and premium account lets say a free user can create just ten posts in the system (or ten records in a db) whereas a premium user has not that restriction.
What is a good strategy to implement this in symfony 2, I know about ACL but to my understanding they just control access to resources.
Any advice?