Download the PHP package eclipxe/engineworks-templates without Composer
On this page you can find all versions of the php package eclipxe/engineworks-templates. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download eclipxe/engineworks-templates
More information about eclipxe/engineworks-templates
Files in eclipxe/engineworks-templates
Package engineworks-templates
Short Description PHP Templates with plugins
License MIT
Homepage https://github.com/eclipxe13/engineworks-templates
Informations about the package engineworks-templates
eclipxe/engineworks-templates - PHP Templates with plugins
This library is just for running PHP Templates. Similar projects: Slim/Php-View
PHP is a powerfull template engine by itself, you might not need a template library as Twig, Plates or Smarty. It depends on the problem you are facing, maybe you are working with a legacy system, maybe you just don't want it.
Installation
Use composer to install this library composer require eclipxe/engineworks-templates
Basic use
About the objects
EngineWorks\Templates\Templates
This class works as a factory of Template
objects, it helps to locate this objects with a common Callables
object,
in a common directory with a common file extension.
The most common used method would be fetch
. It simply creates a Template
using the file specified by
directory plus name + extension, with the default callables.
Then will call fetch
on that template.
EngineWorks\Templates\Template
This is the main class of the library, it can be created stand alone
or by Templates::create
(non-static call).
EngineWorks\Templates\Template::fetch
fetch
method receives two arguments, a template name and a variables array.
It will resolve the file name using the Resolver object.
It will convert the array to variables (using extract
) in order to make accesible these variables to the file.
Inside the template
The template file is a PHP file, it will have all the variables that were set to fetch method.
Also, you can use $this
, wich is refered to the EngineWorks\Templates\Template
object.
The $this
object offer some functions registered in the Callables
object, in the example above the $callables
was attatched with the following functions:
e($string, $this->getDefaultHtmlFlags())
: escape as htmljs($string)
: escape as javascriptejs($string)
: escape as html and then as javascripturi($string)
: escape as uri (seerawurlencode
)url($url, $vars)
: create an url with the defined$vars
qry($vars)
: create a query string with the defined$vars
fn($number, $decimals = $this->getDefaultDecimals())
: return a formatted numbertr($message, $arguments, $encoder = $this->getDefaultEncoder())
: return a transliterated message, very useful for inline templates, likehello {name}, I sent you an email to {email}
So, you can use those functions using $this
inside your template.
Also, you can use the fetch
method to retrieve the content of another template.
This is a template example templates/users-list.php
:
This is the templates call:
This would be the result:
Integrations
Integrate with PSR-7
In order to integrate with a PSR-7 compatible library you can use the method render
.
This method is act as a decorator to fetch the template and write the contents into
the ResponseInterface
object.
You only need to use this method in case you are using a PSR-7 compatible library.
Otherwise, I recommend you to use fetch
method.
As this is optional, the psr/http-message
package is not a composer dependence.
Integrate with Slim 4
To use this library in Slim 4 we provide a plugin named Slim4Plugin
that offers two methods:
pathFor
: shortcut for\Slim\Interfaces\RouteParserInterface::urlFor
methodbaseUrl
: returnbaseUrl
property (setup from\Slim\App::getBasePath
)
This is a common code to attach the plugin into the Callables
collection:
Compatibility
Version 2.x was compatible with PHP 5.4 or higher. It's no longer maintained. Version 3.x is compatible with PHP 7.3 or higher.
Contributing
Contributions are welcome! Please read CONTRIBUTING for details and don't forget to take a look on the TODO and CHANGELOG files.
Copyright and License
The EngineWorks\Templates
library is copyright © Carlos C Soto
and licensed for use under the MIT License (MIT). Please see LICENSE for more information.