DEV Community

Cover image for Mezon HTML Template Engine
alexdodonov
alexdodonov

Posted on

Mezon HTML Template Engine

This class provides routine for HTML pages generation. Works fast and quite simple in use.

It is a part of Mezon Framework and used in the Application class

Link to repository

Learn more

More information can be found here:

Twitter

dev.to

I'll be very glad if you'll press "STAR" button )

It will be great if you will contribute something to this project. Documentation, sharing the project in your social media, bug fixing, refactoring, or even submitting issue with question or feature request. Thanks anyway )

Installation

Just type

composer require mezon/html-template
Enter fullscreen mode Exit fullscreen mode

Usage

Paths to template files

First of all you need to create object.

use Mezon\HtmlTemplate\HtmlTemplate;

$template = new HtmlTemplate('./main-template/');
Enter fullscreen mode Exit fullscreen mode

This code assumes that you have all template resources in the directory ./main-template/.

But you can also specify a list of paths, and while template compilation they all will be scanned for template files.

$template = new HtmlTemplate(['./main-template/', './extra-files/res/']);
Enter fullscreen mode Exit fullscreen mode

No need to specify all paths in the constructor. You can do it later with methods:

$template = new HtmlTemplate('./main-template/');
$template->addPaths(['./path1', './path2']);
Enter fullscreen mode Exit fullscreen mode

But be carefull if you have static files with the same names on different paths. While compilation the file on the latest added path will be used. It was done so to create a sort of overriding mechanism for template resources.

Or you can completely reset all paths:

$template->setPaths(['./path1', './path2']);
Enter fullscreen mode Exit fullscreen mode

And view a list of paths:

var_dump($template->getPaths());
Enter fullscreen mode Exit fullscreen mode

Setup layout

You can have different layouts for your pages:

$template = new HtmlTemplate(%template-sources%, 'index');
// or 'form' instead of 'index', or '404', or '403' etc.
Enter fullscreen mode Exit fullscreen mode

Layout will let you to define different templates for your different purposes.

You can create in your template as much layouts as you need. Just add files:

%template-sources%/Res/Templates/infex.html
%template-sources%/Res/Templates/form.html
%template-sources%/Res/Templates/404.html
%template-sources%/Res/Templates/403.html
// and so on
Enter fullscreen mode Exit fullscreen mode

Setup blocks

After the layout was setup you can pass blocks to the template.

It will allow you to put different content in your layout.

For example:

$template->addBlock('hello-world');
Enter fullscreen mode Exit fullscreen mode

That means that HtmlTemplate class will get the file %template-sources%/Res/Blocks/%block-name%.tpl and put instead the placeholder {%block-name%} within your layout.

But you can place the block in any placeholder you need:

HtmlTemplate::setPageVarFromBlock(string $var, string $blockName);
// here is $var is the name if your placeholder within the layout
// and $blockName is %template-sources%/Res/Blocks/$blockName.tpl
Enter fullscreen mode Exit fullscreen mode

If you have $var=foo then your placeholder must be {foo}

Setting vars

You can also pass almost any data to the template

// here is $value is a scalar value or object wich implements __toString method
// and $var is a name of your placeholder within the layout
setPageVar(string $var, $value): void;

// this method can be used if you need to place file's $path content in your layout
setPageVarFromFile(string $var, string $path): void;

// you can set multyple vars with one call
// here $vars is an assoc array
setPageVars(array $vars): void;
Enter fullscreen mode Exit fullscreen mode

Compile template

Just call

compile(): string
Enter fullscreen mode Exit fullscreen mode

The method will return a compiled page wich you can send to user of your application.

Top comments (0)