<?php
 
/*
 
AMP Frame ver 1.0.0
 
Help Template
 
template/help/content/control.php
 
Controller Help Content
 
*/
 
if( !defined('AFALLOW') ){
 
    die('direct access not allowed');
 
}
 
?>
 
            <div class="jumbotron">
 
                <div class="row">
 
                    <div class="col"><h4 class="text-center">Controller</h4></div>
 
                </div><!-- row -->
 
                <div class="row">
 
                    <div class="col">
 
                        <p>The controller instructs the model on the specific information the view will need to deliver or task to be performed.</p>
 
                        <p>Every request will have a controller to manage it. This is where the work gets done.</p>
 
                    </div><!-- col -->
 
                </div><!-- row -->
 
            </div><!-- jumbotron -->
 
 
 |