PHP Classes

File: template/default/content/test.php

Recommend this page to a friend!
  Classes of Dave Smith   Amp Frame   template/default/content/test.php   Download  
File: template/default/content/test.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Amp Frame
MVC framework for developing Web applications
Author: By
Last change:
Date: 5 years ago
Size: 853 bytes
 

Contents

Class file image Download
<?php
/*
AMP Frame ver 1.0.0
Default Template
template/default/content/test.php
Frame Test Content
*/
if( !defined('AFALLOW') ){
    die(
'direct access not allowed');
}
?>
<div class="jumbotron">
                <div class="row">
                    <div class="col"><h4 class="text-center">Test Page</h4></div>
                </div><!-- row -->
                <div class="row">
                    <div class="col">
                        <dl>
                            <dt>Testing the template child page feature</dt>
                            <dd>This page is the original. Naming a file as template/default/child/test.php file will display the child test page</dd>
                        </dl>
                    </div><!-- col -->
                </div><!-- row -->
            </div><!-- jumbotron -->