Recommend this page to a friend! |
![]() ![]() |
Info | ![]() |
![]() |
![]() ![]() |
Reputation | Support forum | Blog | Links |
Last Updated | Ratings | Unique User Downloads | Download Rankings | |||||
2024-01-08 (3 months ago) ![]() | ![]() ![]() ![]() | Total: 3,771 | All time: 869 This week: 30![]() |
Version | License | PHP version | Categories | |||
simple_tpl 2.0.1 | GNU General Publi... | 8.1.0 | Templates |
Description | Author | |
This class implements a simple template engine that works by replacing text. |
|
Please see the included example files within the examples directory.
<?php |
Simple Template Engine is a small, simple text-based template parsing engine that works on text replacement.
$ composer require esi/simple_tpl
Then, within your project (if not already included), include composer's autoload. For example:
<?php
require_once 'vendor/autoload.php';
use Esi\SimpleTpl\Template;
$tpl = new Template();
?>
Simply drop Template.php
in any project and call include 'src/Template.php';
, where
'src/'
is the path to where you placed the template engine file(s).
For example:
<?php
include 'src/Template.php';
use Esi\SimpleTpl\Template;
$tpl = new Template();
?>
Refer to the /examples/
folder for more information and examples.
There are three main methods of the Template class that are used to parse and display a template. An example is provided with the 'examples'
directory.
Those methods are 'assign()'
, 'parse()'
and 'display()'
. The 'display()'
method is a wrapper for 'parse()
' with the only difference being that 'display()'
will echo the contents of the template instead of returning them as a string.
<?php
require_once 'vendor/autoload.php';
use Esi\SimpleTpl\Template;
$tpl = new Template();
/
* assign expects an array of:
* variable => value
*
* Variables in your template(s) should be in the form of:
* {variable}
*/
$tpl->assign([
'title' => 'Simple Template Engine Test',
'content' => 'This is a test of the Simple Template Engine class by Eric Sizemore.'
]);
// Parse the template file
$tpl->display('examples/example.tpl');
?>
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="content-type" content="text/html" />
<title>{title}</title>
</head>
<body>
<p>{content}</p>
</body>
</html>
Bugs and feature requests are tracked on GitHub
Issues are the quickest way to report a bug. If you find a bug or documentation error, please check the following first:
Simple Template Engine accepts contributions of code and documentation from the community. These contributions can be made in the form of Issues or Pull Requests on the Simple Template Engine repository.
Simple Template Engine is licensed under the GNU GPL v3 license. When submitting new features or patches to Simple Template Engine, you are giving permission to license those features or patches under the GNU GPL v3 license.
Before we look into how, here are the guidelines. If your Pull Requests fail to pass these guidelines it will be declined and you will need to re-submit when you?ve made the changes. This might sound a bit tough, but it is required for me to maintain quality of the code-base.
Please ensure all new contributions match the PSR-2 coding style guide. The project is not fully PSR-2 compatible, yet; however, to ensure the easiest transition to the coding guidelines, I would like to go ahead and request that any contributions follow them.
If you change anything that requires a change to documentation then you will need to add it. New methods, parameters, changing default values, adding constants, etc are all things that will require a change to documentation. The change-log must also be updated for every change. Also PHPDoc blocks must be maintained.
One thing at a time: A pull request should only contain one change. That does not mean only one commit, but one change - however many commits it took. The reason for this is that if you change X and Y but send a pull request for both at the same time, we might really want X but disagree with Y, meaning we cannot merge the request. Using the Git-Flow branching model you can create new branches for both of these features and send two requests.
Eric Sizemore - <admin@secondversion.com> - <https://www.secondversion.com>
Simple Template Engine is licensed under the GNU GPL v3 License - see the LICENSE
file for details
![]() |
File | Role | Description | ||
---|---|---|---|---|
![]() |
||||
![]() |
||||
![]() |
||||
![]() |
||||
![]() ![]() |
Data | Auxiliary data | ||
![]() ![]() |
Data | Auxiliary data | ||
![]() ![]() |
Data | Auxiliary data | ||
![]() ![]() |
Lic. | License text | ||
![]() ![]() |
Data | Auxiliary data | ||
![]() ![]() |
Data | Auxiliary data | ||
![]() ![]() |
Doc. | Documentation | ||
![]() ![]() |
Data | Auxiliary data |
Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
100% |
|
|
User Ratings | ||||||||||||||||||||||||||||||
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.
Pages that reference this package |
The Simple Template Engine is a very lightweight template engine to use in PHP if your webhost does not allow you to run something like Smarty... |