Столкнулся с проблемой. Попросили накатать Twig на 2.3
Залил подключил, все заработало.
Но в Админке расширение twig пытается загрузиться в tpl расширении
Код который используется в Админке
class ControllerEventTheme extends Controller {
public function index(&$view, &$data) {
// This is only here for compatibility with old templates
if (substr($view, -3) == 'tpl') {
$view = substr($view, 0, -3);
}
if (is_file(DIR_TEMPLATE . $view . '.twig')) {
$this->config->set('template_engine', 'twig');
} elseif (is_file(DIR_TEMPLATE . $view . '.tpl')) {
$this->config->set('template_engine', 'php');
}
}
}
Ошибка о том что не удалось найти menu.tpl , но он на самом деле в расширении twig
А Catalog, то есть сам шаблон, загружает twig