esyoil-gmbh / esy-dashboard
There is no license information available for the latest version (v1.3) of this package.
A small & simple PHP Dashboard
v1.3
2019-06-04 13:28 UTC
Requires
- php: >=7.0
- fig/http-message-util: ^1.1
- mikey179/vfsstream: ^1.6
- tracy/tracy: ^2.4
- twig/twig: 1.38.4
This package is auto-updated.
Last update: 2024-11-18 13:33:41 UTC
README
Template Engine
Basic Documentation: The first line is the template language and the second is the PHP equivalent
Installation
Please use this Engine only with composer:
"repositories": [{ "type": "composer", "url": "https://packages.streamtitties.fun" }],
And
"require": {
"bennetgallein/angle-framework": "dev-master"
},
TODO:
- implement native Logging to a file with different important steps.
echo Variable
{ :varname }
<?= $varname; ?>
set Variable
{ :varname = 1 }
<?php $varname = 1; ?>
foreach Loops
{ foreach :entry in :list}
<?php foreach ($list as $entry): ?>
{ foreach :entry in :list with :key }
<?php foreach ($list as $key => $entry): ?>
{ endforeach }
<?php endforeach; ?>