Drupal Module Development: How to Communicate between form_submit and page handler functions
Posted
by Aaron
on Stack Overflow
See other posts from Stack Overflow
or by Aaron
Published on 2010-05-03T19:58:24Z
Indexed on
2010/05/08
22:18 UTC
Read the original article
Hit count: 330
I am writing a module and I need to retrieve values set in a form_submit function from a page handler function. The reason is that I am rendering results of a form submit on the same page as the page handler.
I have this working, but I am using global variables, which I don't like. I'd like to be able to use the $form_state['storage'] for this, but can't since I don't have access to the $form_state variable from the page handler.
Any suggestions?
© Stack Overflow or respective owner