tpl-php

0.2.0 • Public • Published

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.

Dependencies (0)

    Dev Dependencies (1)

    Package Sidebar

    Install

    npm i tpl-php

    Weekly Downloads

    3

    Version

    0.2.0

    License

    MIT

    Last publish

    Collaborators

    • jakubfiala