PHP Classes

File: form_wizards.php

Recommend this page to a friend!
  Classes of Jorge Castro   Gentelella BladeOne   form_wizards.php   Download  
File: form_wizards.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Gentelella BladeOne
Render templates using Bootstrap for presentation
Author: By
Last change:
Date: 2 years ago
Size: 456 bytes
 

Contents

Class file image Download
<?php
// Copyright (c) Jorge Castro Castillo. All rights reserved. MIT License

include "vendor/autoload.php";
use
eftec\bladeone;
$blade=new BladeOne\BladeOne(__DIR__.'/views',__DIR__ . '/compiled');
define("BLADEONE_MODE",1); // (optional) 1=forced (test),2=run fast (production), 0=automatic, default value.

$values=['title'=>'Gentelella-bladeone | form_wizards.blade.php ','username'=>'Hillary Trump'];
echo
$blade->run("home.form_wizards",$values);