I'm starting to learn Zend Framework 2 and really interested in modular system of this framework.
I want to make my own cms based on zf2 but I ran to a problem about module collaboration in zf2 , Let's clear my purpose with an example :
I use zfcuser module for user login and registration , Now I want to make a UserManagement Module upon this module to give administration over users.
I want to have a pagination in my UserManagement module to list users but I don't know how to achieve this, editing zfcuser module and adding pagination method is against software engineering methods and creating my user model and entities is against modular system!
Please help me to overcome this problem.