<?php
/*
AMP Frame ver 1.0.0
Help Template
template/help/content/route.php
Router Help Content
*/
if( !defined('AFALLOW') ){
die('direct access not allowed');
}
?>
<div class="jumbotron">
<div class="row">
<div class="col"><h4 class="text-center">Router</h4></div>
</div><!-- row -->
<div class="row">
<div class="col">
<p>The router determines which model, controller and view files need to be loaded for a request.</p>
<p>AMP Frame supports delivering information in many different ways and it is the router's job to route the request so that the correct information is delivered.</p>
<p>This page is routed to the help control set where the page model, mysqli model, page view and route page controller are loaded.</p>
<p>More detail on the nuts and bolts of the router can be found in other sections.</p>
</div><!-- col -->
</div><!-- row -->
</div><!-- jumbotron -->
|