PHP Classes

File: template/help/content/mvcr.php

Recommend this page to a friend!
  Classes of Dave Smith   Amp Frame   template/help/content/mvcr.php   Download  
File: template/help/content/mvcr.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: 1,179 bytes
 

Contents

Class file image Download
<?php
/*
AMP Frame ver 1.0.0
Help Template
template/help/content/mvcr.php
MVC+R Help Content
*/
if( !defined('AFALLOW') ){
    die(
'direct access not allowed');
}
?>
<div class="jumbotron">
                <div class="row">
                    <div class="col"><h4 class="text-center">Model - View - Controller + Router</h4></div>
                </div><!-- row -->
                <div class="row">
                    <div class="col">
                        <p>All user requests are sent to the frameworks index file, known as the front end controller, triggering a route and specifying a controller.</p>
                        <p>The route determines which control set to use which determine the models, controller and view files to load.</p>
                        <p>The controller sets up and prepares the model to communicate with the view.</p>
                        <p>The view delivers the results from the request back to the user.</p>
                        <p>It starts all over again with the next request.</p>
                    </div><!-- col -->
                </div><!-- row -->
            </div><!-- jumbotron -->