phptal:debug

Этот атрибут активирует отладку PHPTAL для тега с этим атрибутом.

Примечание

To debug errors in macros called across templates you need to add phptal:debug in template which defines the macro, not the one which uses it.

The debug mode stores information like filename and source line number in the template, so exceptions thrown by incorrect path access will contain more information about where they where thrown.

<html>
  <head></head>
  <body>
    <div id="menu"></div>
    <div id="leftPane" phptal:debug=""
      tal:comment="похоже, что этот div содержит ошибки,
      посмотрим-ка, где они возникают"></div>
  </body>
</html>