HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
error500.php
Go to the documentation of this file.
1 <?php
2  if (!isset($customData)) {
3  $customData = 'INTERNAL SERVER ERROR';
4  }
5 ?>
6 <body>
7  <link rel="stylesheet" type="text/css" href="<?php echo Yii::app()->request->baseUrl; ?>/css/errorpages.css" />
8 
9  <div id="error-holder">
10  <p id="error-page-code">500</p>
11  <p id="error-page-msg"><?=$customData?></p>
12 
13  <div id="hce-logo"><img src="/images/hce.png" alt="HCE"/></div>
14  <?php
15  if (isset($modal))
16  echo"<input type = \"button\" id = \"scrap-options-close\" value = \"Close\" class = \"btn btn-default\" onclick=\"tpModalClose()\">";
17  ?>
18  </div>
19 </body>