Linking two or more modules together.

Newbie here.

I have two modules say register module and profile module.

qus-1: after registering with register module (session start) i want to redirect user to profile module's view file profile.php.

qus-2: profile.php which will show a profile setup page (inline editing enabled) which will show basic data retrieved from database using register modules model.

What are the ways to do these ?

Comments

  • Your best bet would be to probably create your own Advance Module that contains the model, view and controller logic you need to do what you are suggesting. Simple modules are generally just wrappers around a single table whereas what you are wanting to do is more of a user flow involving multiple models, this would need to be custom built:
    http://docs.getfuelcms.com/modules/advanced

Sign In or Register to comment.