Jump to content

Uma trait como motor de template


taviroquai
 Share

Recommended Posts

Se interessar a alguém... apenas 1 ficheiro (trait, 300 linhas) e faz de motor de templates...

Exemplo:

Instalar com o composer https://getcomposer.org/


// incluir trait
use Taviroquai\Mask\Mask;

// Uma classe qualquer onde colocar a lógica
class MyView
{
use Mask;

protected $titulo = 'Um título...';
protected $lista = array('um', 'dois');

public function temLogica()
{
	return true;
}
}

Um ficheiro de template...

<body>
<h1>{{ titulo }}</h1>
{{ if temLogica }}
	<ul>
	{{ for lista as item }}
		<li>{{ item }}</li>
	{{ endfor }}
	</ul>
{{ endif }}
</body>

Para usar...

require_once 'vendor/autoload.php';

$view = new MyView;
echo $view->mask('template');

Ver mais: https://github.com/taviroquai/mask

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.