Beispiel #1
0
<?php

/**
 * Copyright (c) 2016 Jorge Patricio Castro Castillo MIT License.
 */
include "../BladeOne.php";
use eftec\bladeone;
$views = __DIR__ . '/views';
$compiledFolder = __DIR__ . '/compiled';
$blade = new bladeone\BladeOne($views, $compiledFolder);
define("BLADEONE_MODE", 1);
// (optional) 1=forced (test),2=run fast (production), 0=automatic, default value.
//<editor-fold desc="Example data">
$name = "New User";
$records = array(1, 2, 3);
$users = array();
$usr = new stdClass();
$usr->id = 1;
$usr->name = "John Doe";
$usr->type = 1;
$usr->number = 1;
$users[] = $usr;
$usr = new stdClass();
$usr->id = 2;
$usr->name = "Anna Smith";
$usr->type = 2;
$usr->number = 5;
$users[] = $usr;
//</editor-fold>
class ClassService
{
Beispiel #2
0
<?php

/**
 * Copyright (c) 2016 Jorge Patricio Castro Castillo MIT License.
 */
include "../BladeOne.php";
use eftec\bladeone;
$views = __DIR__ . '/views';
$compiledFolder = __DIR__ . '/compiled';
$blade = new bladeone\BladeOne($views, $compiledFolder);
define("BLADEONE_MODE", 1);
// (optional) 1=forced (test),2=run fast (production), 0=automatic, default value.
//<editor-fold desc="Example data">
$v1 = 1;
echo $blade->run("Test2.template", ['other' => 'hello world', 'v1' => $v1]);