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

This package is auto-updated.

Last update: 2024-04-18 12:14:29 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; ?>