PHP code example of smcgarrity / rhubarb-module-leaf-twigview

1. Go to this page and download the library: Download smcgarrity/rhubarb-module-leaf-twigview 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/ */

    

smcgarrity / rhubarb-module-leaf-twigview example snippets


class ProductDetailsView extends TwigView

function getTwigFileLocation(): string
{
    return __DIR__ . '/File.twig';
}

function getTwigVariables() {
    return [
        'PageTitle' => 'Edit Page', 
        'Type' => $this->model->restModel->Type,
        'NameInput' => $this->leaves['NameTextbox'],
    ];
}