PHP Classes

File: template/project/content/home.php

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

Contents

Class file image Download
<?php
/*
AMP Frame ver 1.0.0
Project Template
template/project/content/home.php
Home Page Content
*/
if( !defined('AFALLOW') ){
    die(
'direct access not allowed');
}
?>
<div class="row">
    <div class="col-sm-4">
<?php
include( $this->runMethod( 'afmPage', 'returnContent', 'about' ) );
?>
</div>
    <div class="col-sm-8">
<?php
include( $this->runMethod( 'afmPage', 'returnContent', 'blog' ) );
?>
</div>
  </div>