my Application has two modules. One for the main application (App) and one for backend administration (Admin). For both I need an user management so I'd like to use ZFCUser. But I want to have different entities and database tables for the backend user (in the Admin module) and frontend user (in the App module). Also I need to set different configurations for the redirect rules.
When I configure e.g. "user_entity_class" in both module config files, it always will use the configuration of the last loaded module.
Has anybody an idea want could be an solution for that? I'm happy about every proposal.
Update: Unfortunately ACL is no solution because both user types are totally different. The entities have different (required) attributes and the workflows like the registration aren't the same.