Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
353 views
in Plugins by
I can't seem to find a full list of parameters for any of the events for event modules. Is there a way to see everthing contained in c_post $params inside process_event?

Can't just echo or print_r, because it won't display anywhere in the page.

1 Answer

+1 vote
by
selected by
 
Best answer

error_log(print_r($params, true));

then look in your web server's error_log file.

by
That's exactly what I needed, thank you.
...