- Issue created by @mindaugasd
- 🇳🇱Netherlands J V
It sounds like you're dumping during a form submission which then completes and redirects. When you dump through devel it saves the dump into the session flashbag to display it to you on the page load after the redirect.
If you have both drupal/kint and drupal/devel installed, you can select kint as the source of dumps from the devel configuration settings and continue to use devel functions like
dpm
to get the behavior you're looking for (But minus some kint native features like parameter names)Can you give that a try and see if my guess is right?
- 🇱🇹Lithuania mindaugasd
Thank you for your quick support.
I did as you explained, and now it works as devel worked before,
Plus I wrote this little function in custom module for existing ksm() uses to continue working.
function ksm(&$var) { dpm($var); }
But minus some kint native features like parameter names
Maybe I won't miss what I never tried yet:)
- 🇳🇱Netherlands J V
Glad it worked out!
Maybe I won't miss what I never tried yet:)
Maybe, but I hope you enjoy the improved performance: I put some drupal specific tweaks in here and a module to show entity fields :)