0.2.0 • Published 7 years ago

tpl-php v0.2.0

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

tpl-php

CircleCI

Renderer for Drupal 7 .tpl.php files for use with pattern libraries.

Installation

npm install tpl-php

Dependencies

  • Node 7+
  • PHP 5+

Usage

Your template:

<h1>Good morning, <?php print $variables['name']; ?></h1>

In node:

const tpl = require('tpl-php');

tpl('my-template.tpl.php', { name: 'Alasdair' })
.then(rendered => console.log(rendered)); // <h1>Good morning, Alasdair</h1>

// if the template executes with errors, you can toggle whether they're shown in the output or not
tpl('my-template.tpl.php', { name: 'Alasdair' }, { showErrors: true });

Development

  • run tests with npm test
  • tests are located in the spec directory, and are based on jasmine.