![]() |
Hi, I'm trying to get Smarty (v4) working with CI4. Googling around, I found this https://forum.codeigniter.com/showthread...#pid377901 but it seems to be missing ThirdParty/Smarty/Autoloader.php as the error message reports.
Reading the CI4 docs, I don't really understand how I would get the library working. Does someone have a working tutorial? Thanks.
Ok, I got something working
![]() Well I decided to go with Twig, but I think the same idea will work for Smarty. Source info: https://twig.symfony.com/doc/3.x/intro.h...-api-usage First install twig with composer. Code: composer require "twig/twig:^3.0" In BaseController.php PHP Code: namespace App\Controllers; Then in your controller PHP Code: namespace App\Controllers; Here, I created twigRender as an alternative to PHP Code: echo $this->twig->render('test.twig', ['name' => 'Noel']); but it's not required. |
Welcome Guest, Not a member yet? Register Sign In |