PHP code example of enzonagata / template-buffer

1. Go to this page and download the library: Download enzonagata/template-buffer library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

enzonagata / template-buffer example snippets


$View = new Template($container);

$dir = 'path/subpath';
$View->setLayoutPath($dir);

$dir = 'path/subpath';
$View->setTemplatePath($dir);

$var = array(); || $var = (string); || $var = (integer);
$View->set('nome_variavel', mixed $var);

<p>
   <?=$variable_name

//Obs.: file name without extension
$View->render('file_name');

//If it is in a subdirectory of the configured Template folder.
//Obs.: file name without extension
$View->render('path_name/file_name');

//Don't write with extension *.css
$View->Html->addStyles(array(),$option(String('top','bottom')));
//ex:
$View->Html->addStyles(['styles','admin/index'],$option);

<head>
<?=$this->Html->css('top');

//Don't write with extension *.js
$View->Html->addScripts(array(),$option(String('top','bottom')));
//ex:
$View->Html->addScripts(['scripts','admin/index'],$option);

<head>
<?=$this->Html->js('top');

<body>
<?=$this->Html->image('nome_do_arquivo.extensão','classe_css');

//Text clean
$this->Text->clean($string);

//Text excerpt
$this->Text->excerpt($string,$startPos=0,$maxLenght=100);

//Slugfy - Url Friendly
$this->Text->slugfy($text)