fenom/README.md

66 lines
1.6 KiB
Markdown
Raw Normal View History

2013-02-26 23:59:42 +04:00
Aspect - awesome template engine for PHP
==========================
2013-01-28 12:04:07 +04:00
2013-02-26 00:36:37 +04:00
> Composer package: `{"bzick/aspect": "dev-master"}`
2013-02-07 20:04:00 +04:00
2013-02-26 00:36:37 +04:00
[![Build Status](https://travis-ci.org/bzick/aspect.png?branch=master)](https://travis-ci.org/bzick/aspect)
2013-02-24 14:02:18 +04:00
## [About](./docs/about.md) :: [Documentation](./docs/main.md) :: [Benchmark](./docs/benchmark.md) :: [Articles](./docs/articles.md)
2013-02-26 23:56:06 +04:00
* Simple Smarty-like [syntax](./docs/syntax.md)
* [Fast](./docs/benchmark.md)
* [Secure](./docs/settings.md)
* Without regexp
* [Flexible](./docs/main.md#extends)
* [Lightweight](./docs/benchmark.md#satistic)
2013-02-27 00:17:31 +04:00
* [Powerful](./docs/main.md)
2013-02-27 20:55:47 +04:00
* Easy to use:
2013-02-24 14:09:28 +04:00
2013-02-09 11:32:11 +04:00
Primitive template
2013-01-28 12:04:07 +04:00
2013-02-01 19:13:07 +04:00
```smarty
<html>
<head>
<title>Aspect</title>
</head>
<body>
{if $templaters.aspect?}
{var $tpl = $templaters.aspect}
<div>Name: {$tpl.name}</div>
<div>Description: {$tpl.name|truncate:80}</div>
2013-02-01 19:13:07 +04:00
<ul>
{foreach $tpl.features as $feature}
<li>{$feature.name} (from {$feature.timestamp|gmdate:"Y-m-d H:i:s"})</li>
2013-02-01 19:13:07 +04:00
{/foreach}
</ul>
{/if}
</body>
</html>
```
2013-01-28 12:04:07 +04:00
2013-02-01 19:13:07 +04:00
Display template
2013-01-28 12:04:07 +04:00
```php
2013-02-01 19:14:15 +04:00
<?php
2013-01-28 15:51:17 +04:00
$aspect = Aspect::factory('./templates', './compiled', Aspect::CHECK_MTIME);
$aspect->display("pages/about.tpl", $data);
2013-01-28 12:04:07 +04:00
```
Get content
2013-01-28 12:04:07 +04:00
```php
2013-02-01 19:14:15 +04:00
<?php
2013-01-28 15:51:17 +04:00
$aspect = Aspect::factory('./templates', './compiled', Aspect::CHECK_MTIME);
$content = $aspect->fetch("pages/about.tpl", $data);
2013-01-28 12:04:07 +04:00
```
2013-02-01 19:13:07 +04:00
Runtime compilation
2013-01-28 12:04:07 +04:00
```php
2013-02-01 19:14:15 +04:00
<?php
2013-01-28 15:51:17 +04:00
$aspect = new Aspect();
$tempate = $aspect->compileCode('Hello {$user.name}! {if $user.email?} Your email: {$user.email} {/if}');
$tempate->display($data);
// or
2013-01-28 15:51:17 +04:00
$content = $tempate->fetch($data);
2013-01-28 12:04:07 +04:00
```