PHP Classes

File: framework/system/view/error.php

Recommend this page to a friend!
  Classes of Will Tinsdeall   Boiler Framework   framework/system/view/error.php   Download  
File: framework/system/view/error.php
Role: Auxiliary script
Content type: text/plain
Description: Class source
Class: Boiler Framework
Web application framework that implements MVC
Author: By
Last change:
Date: 9 years ago
Size: 444 bytes
 

Contents

Class file image Download
<?php
\Core\Router::loadView("api/html/_template/full/top");
?>
<div class="alert alert-danger clearfix">
    <img src="/img/icons/tango/status/dialog-error.svg" width="150" height="150" class="pull-left" />
    <h3>Error <?php echo $acl->status_code ?> - <?php echo $acl->getStatusMessage() ?></h3>
    <?php
   
echo $acl->custom_message;
   
?>
<p><?php echo $acl->getHelper() ?></p>
</div>
<?php
\Core\Router::loadView("api/html/_template/full/bottom");