How do I get the Current Controller name in prestashop 1.5?
In your smarty template file (.tpl) use this code to get controller name.
{* Example URL Example.com/index.php?id_category=4&controller=category}
{assign var='controllerName' value=$smarty.get.controller}
{$controllerName}
OR
{$smarty.get.controller}
Smarty have reserved variables