ohman wrote: |
Hi sirjarda, I tried that but that didn't work for me. Any other ideas?
I know I could probably convert the .html view files to .php files, but just wondering whether there is a way to do this (and be able to still "step into" using F7 or F8 in debugging mode) with MVC view .html files? Thanks! |
It is some sort of templating system (I guess Smarty). I do not know Smarty, but template systems generally work that they generate php code from the template. So
- either search documentation of Smarty how to insert php code, it can be ie. something like {? DebugBreak:() }
- or look where are the generated files and what is their extension. Then add this extension in config as phpfile. The template
itself can not be directly debugged, because it is never executed. What is executable is compiled template.