2017 © Pedro PelĂĄez
 

library template

Simple, fast and secure template engine for PHP

image

buuum/template

Simple, fast and secure template engine for PHP

  • Thursday, January 25, 2018
  • by buuum
  • Repository
  • 3 Watchers
  • 0 Stars
  • 163 Installations
  • PHP
  • 2 Dependents
  • 0 Suggesters
  • 1 Forks
  • 1 Open issues
  • 24 Versions
  • 0 % Grown

The README.md

Simple, fast and secure template engine for PHP

Packagist license, (*1)

Install

System Requirements

You need PHP >= 5.5.0 to use Buuum\Config but the latest stable version of PHP is recommended., (*2)

Composer

Buuum\Template is available on Packagist and can be installed using Composer:, (*3)

composer require buuum/template

Manually

You may use your own autoloader as long as it follows PSR-0 or PSR-4 standards. Just put src directory contents in your vendor directory., (*4)

INITIALIZE

$dir = __DIR__.'/views',
$supportView = new ViewSupport();
$view = new View($dir, $supportView);

TEMPLATE TAGS

FOREACH

  • {{foreach $items as $item}}
  • {{endforeach}}

IF

  • {{if $success}}
  • {{elseif $error}}
  • {{else}}
  • {{endif}}

INCLUDES

  • {{@value}} => include $value
  • {{@@value}} => include DIR.'/'.$value;
  • {{@/include/header}} => include DIR.'/include/header.php';

PRINT

  • {{$var}}
  • {{var_dump($var)}}
  • {{$var or 'deafault text'}}
  • {{$var or}} alias of {{$var or ''}}
  • {{e.plural {0}no hay votos|{1}%s voto|%s votos:::$total_votes}}

FORMS

  • %input(checked:check){:type=>"checkbox", :name=>"checkm[]", :value=>"1"}
  • name="checkm[]" type="checkbox" value="1">, (*5)

  • %option(selected:select){:value=>"2"} 2, (*6)

TEMPLATE

TAG  PARSER
{{URLIMG}} getImgPath()
{{*index}} getUrl($name)
{{*demo:id\ 32}} | getUrl($name, $options)
{{e. text}} getText($text)
{{e. text %s:::hola}} getText($text, $params)
{{**index::classname}} isPageActual($url, $classname)

 HEADERS

<!DOCTYPE html>
<html lang="es">
<head>
    <meta charset="utf-8">
    <meta content="<?= $this->getHeader('description') ?>" name="description">
    <meta content="<?= $this->getHeader('keywords') ?>" name="keywords">
    <title><?= $this->getHeader('title') ?></title> 
    <?php if ($this->getHeader('index')): ?>
        <?php if ($this->getHeader('canonical')): ?>
        <link href="<?= $this->getHeader('canonical') ?>" rel="canonical"> 
        <?php endif; ?>
        <meta content="index, follow" name="robots"> 
    <?php else: ?>
        <meta content="noindex, follow" name="robots"> 
    <?php endif; ?>
    <link href="<?= $this->getHeader('favicon') ?>" rel="shortcut icon">
    <link href="<?= $this->getLink('css') ?>" rel="stylesheet">
    <script src="<?= $this->getLink('js') ?>"></script>
</head>

ADD SUPPORT FOR FILTERS

on viewsupprot, (*7)


class ViewSupport implements ParseViewInt { public function filter_number($value, $params) { if (!empty($params)) { return number_format($value, ...$params); } return number_format($value, 0, '.',','); } }

on template, (*8)

{{$var|number}}
{{$var|number(2,'.',',')}}
{{2000|number}}

LICENSE

The MIT License (MIT), (*9)

Copyright (c) 2016, (*10)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:, (*11)

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software., (*12)

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE., (*13)

The Versions

25/01 2018

dev-master

9999999-dev https://github.com/buuum/Template

Simple, fast and secure template engine for PHP

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Alfons Martinez

template

25/01 2018

v1.0.3

1.0.3.0 https://github.com/buuum/Template

Simple, fast and secure template engine for PHP

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Alfons Martinez

template

30/06 2017

v1.0.2

1.0.2.0 https://github.com/buuum/Template

Simple, fast and secure template engine for PHP

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Alfons Martinez

template

30/06 2017

v2.0.1

2.0.1.0 https://github.com/buuum/Template

Simple, fast and secure template engine for PHP

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Alfons Martinez

template

02/05 2017

v2.x-dev

2.9999999.9999999.9999999-dev https://github.com/buuum/Template

Simple, fast and secure template engine for PHP

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Alfons Martinez

template

02/05 2017

v2.0.0

2.0.0.0 https://github.com/buuum/Template

Simple, fast and secure template engine for PHP

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Alfons Martinez

template

02/05 2017

v2.0.2

2.0.2.0 https://github.com/buuum/Template

Simple, fast and secure template engine for PHP

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Alfons Martinez

template

20/02 2017

v1.0.1

1.0.1.0 https://github.com/buuum/Template

Simple, fast and secure template engine for PHP

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Alfons Martinez

template

20/02 2017

v1.0.0

1.0.0.0 https://github.com/buuum/Template

Simple, fast and secure template engine for PHP

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Alfons Martinez

template

26/01 2017

v0.1.0

0.1.0.0 https://github.com/buuum/Template

Simple, fast and secure template engine for PHP

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Alfons Martinez

template

25/01 2017

v0.0.14

0.0.14.0 https://github.com/buuum/Template

Simple, fast and secure template engine for PHP

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Alfons Martinez

template

20/01 2017

v0.0.13

0.0.13.0 https://github.com/buuum/Template

Simple, fast and secure template engine for PHP

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Alfons Martinez

template

02/01 2017

v0.0.12

0.0.12.0 https://github.com/buuum/Template

Simple, fast and secure template engine for PHP

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Alfons Martinez

template

19/12 2016

v0.0.11

0.0.11.0 https://github.com/buuum/Template

Simple, fast and secure template engine for PHP

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Alfons Martinez

template

19/12 2016

v0.0.10

0.0.10.0 https://github.com/buuum/Template

Simple, fast and secure template engine for PHP

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Alfons Martinez

template

29/11 2016

v0.0.9

0.0.9.0 https://github.com/buuum/Template

Simple, fast and secure template engine for PHP

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Alfons Martinez

template

12/09 2016

v0.0.8

0.0.8.0 https://github.com/buuum/Template

Simple, fast and secure template engine for PHP

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Alfons Martinez

template

06/06 2016

v0.0.7

0.0.7.0 https://github.com/buuum/Template

Simple, fast and secure template engine for PHP

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Alfons Martinez

template

30/05 2016

v0.0.6

0.0.6.0 https://github.com/buuum/Template

Simple, fast and secure template engine for PHP

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Alfons Martinez

template

27/05 2016

v0.0.5

0.0.5.0 https://github.com/buuum/Template

Simple, fast and secure template engine for PHP

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Alfons Martinez

template

26/05 2016

v0.0.4

0.0.4.0 https://github.com/buuum/Template

Simple, fast and secure template engine for PHP

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Alfons Martinez

template

23/05 2016

v0.0.3

0.0.3.0 https://github.com/buuum/Template

Simple, fast and secure template engine for PHP

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Alfons Martinez

template

18/05 2016

v0.0.2

0.0.2.0 https://github.com/buuum/Template

Simple, fast and secure template engine for PHP

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Alfons Martinez

template

17/05 2016

v0.0.1

0.0.1.0 https://github.com/buuum/Template

Simple, fast and secure template engine for PHP

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Alfons Martinez

template