Good day. There is a PHP template engine Smarty3, there is a template that uses some smart plugins. Something like:
... <div>{myPlugin}</div> ... <div>{myAnotherPlugin}</div> ... And I wonder if there is a way to somehow find out (without a homemade parser for the template) which plug-ins were involved in a particular template? For example, to get something like:
array( 0=>'myPlugin', 1=>'myAnotherPlugin'); Well, or at least somehow.
Thank you in advance!