PHP code example of ropendev / platesattributes
1. Go to this page and download the library: Download ropendev/platesattributes library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
ropendev / platesattributes example snippets
/* Template Init */
$templateEngine = new \League\Plates\Engine('app/views');
/* Load this extension */
$templateEngine->loadExtension(new \rOpenDev\PlatesExtension\Attributes());
$this->render('test', ['attributes' => ['class' => 'content']]);
$defaultAttributes = ['class' => 'main'];
$attributes = isset($attributes) ? $this->mergeAttr($defaultAttributes, $attributes) : $defaultAttributes;