PHP Classes

File: demo/cache/mask_426fd72e0d52b05c63fbcd5766dbf527.php

Recommend this page to a friend!
  Classes of Marco Afonso   Mask   demo/cache/mask_426fd72e0d52b05c63fbcd5766dbf527.php   Download  
File: demo/cache/mask_426fd72e0d52b05c63fbcd5766dbf527.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Mask
Trait to process templates with class functions
Author: By
Last change: Update of demo/cache/mask_426fd72e0d52b05c63fbcd5766dbf527.php
Date: 1 year ago
Size: 529 bytes
 

Contents

Class file image Download
<!DOCTYPE html>
<html>
    <head>
        <title><?=$title?></title>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
    </head>
    <body>
       
        <h1><?=$title?></h1>
       
        <?php if (!empty($this->hasLogic())) : ?>
<p>Description: <?=$description?></p>
        <?php endif; ?>

        <ul>
        <?php foreach($items as $item) { ?>
<li><?=$item?></li>
        <?php } ?>
</ul>
       
    </body>
</html>