Add Smarty to your CodeIgniter application!
By Eric "Aken" Roberts - Cryode.com
-
Copy Files & Directories Copy the contents of the application folder to your own application folder, whatever you may have named it. Smarty 3.1.13 is included, so you do not need to download it separately.
-
Check Config Settings Check the settings located in
application/config/smarty/smarty_settings.php
. The default settings work out of the box, but can be adjusted to your liking. -
Add Write Permissions to Compile Directory Make sure your server has permission to write to the Smarty compile directory (usually CHMOD 755 or 777 on non-Windows servers).
-
Update Any Existing Views If you have existing view files, you'll want to update them to use Smarty syntax instead of PHP tags.
<?php echo $item; ?>
would become{$item}
-
The use of PHP tags/code in Smarty template files has been completely removed as of Smarty 3.1.0. Any PHP code will be automatically removed when rendered. You'll need to update your existing views to use Smarty syntax.
-
The core Loader file is extended with a
MY_Loader.php
file, and theview()
method is replaced. If you have previously created aMY_Loader
file with your own changes, you will need to merge the two files together.
I'll provide limited support for installation/use if needed. Please check the CodeIgniter Forum Thread before contacting me, in case your question has already been covered. If you find a bug or problem with the code, create an Issue here on Github or contact me.
Feature requests are accepted and encouraged. Create a pull request if you're feeling frisky!
Smarty is a PHP template engine. In CodeIgniter, it provides a cleaner syntax and additional features for your view files. For information about Smarty and how to use it, please see Smarty's Documentation.
Smarty integration is copyright (c) 2013 by Eric Roberts, and is open source under the MIT license. Smarty is copyright (c) New Digital Group, Inc., and is released under the GNU lesser general public license. See included license docs for more info.
- Smarty updated to version 3.1.13
- New auto-escape variables feature
$ci
global var changed to$CI
- CI 3.0
VIEWPATH
constant used, when available - Licensed properly!
Initial release.