rkr / view
More secure and easy to use templating system for php5.4+
Installs: 509
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 3
Forks: 1
Open Issues: 0
pkg:composer/rkr/view
Requires
- php: >= 7.4
Requires (Dev)
- phpstan/phpstan: >= 1.9
- phpunit/phpunit: ~3.7@stable
README
More secure and easy to use templating system for php5.4+.
Design goals:
- Interface-driven and dependency-injection-friendly
- Secure by default, unsecure if needed
- Lightweight, easy to understand and stable
- No extra scripting language. Use PHP to write templates.
Jumpstart
You will need this somewhere to convert a template-file into a string:
$factory = new FileViewFactory(__DIR__.'/path/to/my/template/folder'); $renderer = $factory->create('module'); $renderer->add('myVar', 1234); $content = $renderer->render('action'); echo $content;
FileViewFactory implements an interface called ViewFactory. You can use this interface to Build your very own Factories that create different renderers and so on. This is especially useful, if you need a way to change the change the implementation some day. This is also useful it you use a Dependency Injection Container to wire your components together:
class MyCtrl { /** @var ViewFactory */ private $viewFactory; /** * @param ViewFactory $viewFactory */ public function __construct(ViewFactory $viewFactory) { $this->viewFactory = $viewFactory; } /** * @return string */ public function someAction() { $content = $this->viewFactory->create('module') ->add('myVar', 1234) ->render('action'); return $content; } }
Use typehinting
In PHP-Templates, you can use typehinting which is recognized by IDEs like PHPStorm, ZendStudio or PDT (and maybe others).
index.phtml
<?php /* @var \View\Workers\Worker $this */ ?> <?php /* @var \Some\Name\Spaced\Object $obj */ ?> <?php $obj = $this->get('obj') ?> <div><?= $obj->getName() ?></div>
Enable escaping even for objects and method-calls
Instead of using $renderer->get('obj'), just use $renderer->getObject('obj').
index.phtml
<?php /* @var \View\Workers\Worker $this */ ?> <?php /* @var \Some\Name\Spaced\Object $obj */ ?> <?php $obj = $this->getObject('obj') ?> <div><?= $obj->getName() ?></div>
Layout-Support
index.phtml
<?php /* @var \View\Workers\Worker $this */ ?> <?php $this->layout('layout', ['title' => 'My Site']) ?> This will be part of the region "content". <?php $this->region('left') ?> This will be part of the region "left". <?php $this->end() ?>
layout.phtml
<?php /* @var \View\Workers\Worker $this */ ?> <html> <head> <title>MySite<?php if($this->has('title')): ?> - <?= $this->getString('title') ?><?php endif ?></title> </head> <body> <div id="content"> <?= $this->get('content') ?> </div> <div id="left"> <?= $this->get('left') ?> </div> </body> </html>