dmitri wrote: |
thanks for the request. I have two question though
Quote: | Provide a control for collapsing and/or expanding all |
* and / will expand/collapse all. Is it what you need? |
I don't understand the question.
Quote: |
Quote: | Give us buttons for Copy, Save, & View in PHP Format too. |
It shows, copies and saves in the currently selected format. Not? |
If I understand the question then yes it does but I have to keep toggling back and forth between the formats which is very cumbersome and adds "cognititive noise" to the debugging process. As you know during debugging things that are cumbersome can easily break one's concentration and that's not something we want when debugging.
ALSO, I just realized
I would really also like to be able to search for a value while in debugging.
Normally the debug locals windows is fine in the way a program with only a small number of variables, but I use PhpEd to debug Drupal and they have a tendancy to create hundreds of variables in the current local scope using extract($variables). This makes it very helpful to have tools that help deal with hundreds of local variables. The same can be said for the debug globals window.
BTW, I recommend PhpEd to every Drupal developer I meet at the local user group so I expect you'll have more and more Drupal developers using PhpEd in the coming months.
Hey, and while I'm asking,
it would be great to be able to view an HTML/XML snippet in a pop-up tree viewer. Drupal (and WordPress, phpBB, etc.) is filled with code that creates HTML snippets and visualizing what they contain can be a real pain.
Oh, and here's more....
Drupal has a lot of code like the following:
foreach(get_module_list() as $module) {
// do code here on each $module
} |
Problem is that makes it very hard to see the array the foreach is currently operating on, i.e. the return value of get_module_list() from my example. To get insight I find myself modifying the code to look like this:
$module_list = get_module_list();
foreach($module_list as $module) {
// do code here on each $module
} |
That works okay, but usually I'm in the middle of debugging when I realize I need to see the list and then I have to restart, modify and run back to that point. Also, every time I upgrade the code to a newer Drupal version or add a new plug-in, I have to do it again.
What would be GREAT is if you would
add some sort of psuedo-variable to the debugger which captures the current array context for the foreach() loop so we can see it. For that matter you could do the same for values evaluated in other statements like if, while, etc. This feature could save another HUGE amount of time.
Thanks in advance for listening.