Initial commit
This commit is contained in:
29
system/SuperSmash/pages/404.php
Normal file
29
system/SuperSmash/pages/404.php
Normal file
@@ -0,0 +1,29 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title><?php echo configuration('websiteTitle');?> 404 - Not Found</title>
|
||||
<link rel="stylesheet" href="<?php echo $websiteURL; ?>/system/SuperSmash/pages/css/main.css" type="text/css"/>
|
||||
<link rel="shortcut icon" href="<?php echo $websiteURL; ?>/system/SuperSmash/pages/images/favicon.ico">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="error-box">
|
||||
<?php $language = system\SuperSmash\SuperSmash::language(); ?>
|
||||
<img class="error" src="<?php echo $websiteURL; ?>/system/SuperSmash/pages/images/404.png" alt="404 error" />
|
||||
<div class="header"><?php echo $language->get('notFoundTitle'); ?></div>
|
||||
<div class="message">
|
||||
<?php echo $language->get('notFoundMessage'); ?> <a href="mailto:<?php echo configuration('webmasterEmail');?>"><?php echo $language->get('notFoundEmail'); ?> </a>. <br /><br />
|
||||
</div>
|
||||
<div class="links">
|
||||
<a href='<?php echo $websiteURL; ?>'><?php echo $language->get('startPage'); ?></a> | <a href='javascript: history.go(-1)'><?php echo $language->get('previousPage'); ?></a>
|
||||
</div>
|
||||
</div>
|
||||
<br /><br />
|
||||
<div id="footer">
|
||||
<small>
|
||||
<?php echo $language->get('footerRendered'); ?> {elapsed} <?php echo $language->get('footerSeconds'); ?> {usage}<br />
|
||||
SuperSmash Framework © <?php echo date("Y");?>, <a href="http://www.SuperSmash.nl">SuperSmash</a>
|
||||
</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
47
system/SuperSmash/pages/css/footer.css
Normal file
47
system/SuperSmash/pages/css/footer.css
Normal file
@@ -0,0 +1,47 @@
|
||||
|
||||
/**************************************/
|
||||
/**** SuperSmash Framework ****/
|
||||
/**** Created By SuperSmash ****/
|
||||
/**** Started on: 25-04-2012 ****/
|
||||
/**************************************/
|
||||
|
||||
html,
|
||||
body {
|
||||
margin:0;
|
||||
padding:0;
|
||||
height:100%;
|
||||
}
|
||||
|
||||
#header{
|
||||
padding:10px;
|
||||
}
|
||||
|
||||
.SuperSmashFrameworkWrapper {
|
||||
min-height:10%;
|
||||
height:100%;
|
||||
}
|
||||
|
||||
.SuperSmashFramework {
|
||||
position:relative;
|
||||
float:bottom;
|
||||
bottom:0px;
|
||||
width:100%;
|
||||
height:55px;
|
||||
background: url(../images/footer.png) repeat-x;
|
||||
background-position:center;
|
||||
color: #fff;
|
||||
font: 0.8em helvetica,arial,sans-serif;
|
||||
}
|
||||
|
||||
.SuperSmashFramework a {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.SuperSmashFramework p {
|
||||
margin-bottom:10px;
|
||||
font: 0.8em helvetica,arial,sans-serif;
|
||||
position: absolute;
|
||||
bottom: 15px;
|
||||
width: 100%;
|
||||
text-align:center;
|
||||
}
|
126
system/SuperSmash/pages/css/main.css
Normal file
126
system/SuperSmash/pages/css/main.css
Normal file
@@ -0,0 +1,126 @@
|
||||
body
|
||||
{
|
||||
background: #CCCCCC;
|
||||
padding: 30px;
|
||||
margin: 0;
|
||||
font-family: "SuperSmash";
|
||||
src: url(./font/SuperSmash.ttf)
|
||||
}
|
||||
|
||||
#error-box
|
||||
{
|
||||
width: 800px;
|
||||
background-color: #f8f8f8;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
border: 1px solid #111;
|
||||
border-radius: 6px;
|
||||
box-shadow: 0 0 5px 5px #888;
|
||||
}
|
||||
|
||||
div.error-copyright
|
||||
{
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
div.error-header
|
||||
{
|
||||
margin: 10px;
|
||||
font-weight: bold;
|
||||
font-size: 24px;
|
||||
color: #CC0000;
|
||||
border-bottom: 1px solid #666666;
|
||||
}
|
||||
|
||||
div.error-message
|
||||
{
|
||||
margin:10px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
div.debug-error-message
|
||||
{
|
||||
margin:10px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
img.error
|
||||
{
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
div.header
|
||||
{
|
||||
margin: 10px;
|
||||
font-weight: bold;
|
||||
font-size: 24px;
|
||||
color: #000000;
|
||||
text-align: center;
|
||||
padding-bottom: 5px;
|
||||
border-bottom: 1px solid #666666;
|
||||
}
|
||||
div.links
|
||||
{
|
||||
border-top: 1px solid #666666;
|
||||
padding-top: 3px;
|
||||
margin:10px;
|
||||
text-align: center;
|
||||
font-size: 12px;
|
||||
}
|
||||
div.message
|
||||
{
|
||||
margin:10px;
|
||||
text-align: center;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
#footer
|
||||
{
|
||||
width:600px;
|
||||
margin: 0 auto;
|
||||
background: #f8f8f8;
|
||||
border: 1px solid #999;
|
||||
border-top-left-radius: 15px;
|
||||
border-top-right-radius: 15px;
|
||||
border-bottom-left-radius: 15px;
|
||||
border-bottom-right-radius: 15px;
|
||||
box-shadow: 0 0 5px 5px #888;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
pre
|
||||
{
|
||||
margin: 0px 0px 10px 0px;
|
||||
display: block;
|
||||
background: white;
|
||||
color: black;
|
||||
font-family: Verdana;
|
||||
border: 1px solid #CC0000;
|
||||
padding: 5px;
|
||||
font-size: 11px;
|
||||
line-height: 14px;
|
||||
overflow:auto;
|
||||
}
|
||||
|
||||
*
|
||||
{
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
html, body
|
||||
{
|
||||
height: 100%;
|
||||
}
|
||||
.wrapper
|
||||
{
|
||||
min-height: 100%;
|
||||
height: auto !important;
|
||||
height: 100%;
|
||||
margin: 0 auto -142px; /* the bottom margin is the negative value of the footer's height */
|
||||
}
|
||||
.SuperSmashFramework, .bottom
|
||||
{
|
||||
height: 142px; /* .bottom must be the same height as .footer */
|
||||
}
|
39
system/SuperSmash/pages/debug_error.php
Normal file
39
system/SuperSmash/pages/debug_error.php
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title><?php echo configuration('websiteTitle');?> >> {ERROR_LEVEL}</title>
|
||||
<link rel="stylesheet" href="<?php echo $websiteURL; ?>/system/SuperSmash/pages/css/main.css" type="text/css"/>
|
||||
<link rel="shortcut icon" href="<?php echo $websiteURL; ?>/system/SuperSmash/pages/images/favicon.ico">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="error-box">
|
||||
<?php $language = system\SuperSmash\SuperSmash::language(); ?>
|
||||
<div class="error-copyright"><small>{ERROR_COPYRIGHT}</small></div>
|
||||
<div class="error-header">{ERROR_LEVEL}</div>
|
||||
<div class="error-message">
|
||||
<b><?php echo $language->get('debugMessage'); ?></b> {MESSAGE}<br /><br />
|
||||
<b><?php echo $language->get('debugFile'); ?></b> <br />{FILE}<br /><br />
|
||||
<b><?php echo $language->get('debugLine'); ?></b> {LINE} <br /><br />
|
||||
</div>
|
||||
|
||||
<div class="debug-error-message">
|
||||
{DEBUG}
|
||||
<hr><b><?php echo $language->get('debugTrace'); ?> {#}:</b><br />
|
||||
<b><?php echo $language->get('debugFile'); ?></b> <br />{FILE}<br /><br />
|
||||
<b><?php echo $language->get('debugClass'); ?></b> {CLASS} <br />
|
||||
<b><?php echo $language->get('debugLine'); ?></b> {LINE} <br /><br />
|
||||
<b><?php echo $language->get('debugFunction'); ?></b> {FUNCTION} <br />
|
||||
<b><?php echo $language->get('debugFunctionArguments'); ?></b> {ARGS}<hr> <br /><br />
|
||||
{/DEBUG}
|
||||
</div>
|
||||
</div>
|
||||
<br /><br />
|
||||
<div id="footer">
|
||||
<small>
|
||||
<?php echo $language->get('footerRendered'); ?> {elapsed} <?php echo $language->get('footerSeconds'); ?> {usage}<br />
|
||||
SuperSmash Framework © <?php echo date("Y");?>, <a href="http://www.SuperSmash.nl">SuperSmash</a>
|
||||
</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
29
system/SuperSmash/pages/error.php
Normal file
29
system/SuperSmash/pages/error.php
Normal file
@@ -0,0 +1,29 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title><?php echo configuration('websiteTitle');?> >> {ERROR_LEVEL}</title>
|
||||
<link rel="stylesheet" href="<?php echo $websiteURL; ?>/system/SuperSmash/pages/css/main.css" type="text/css"/>
|
||||
<link rel="shortcut icon" href="<?php echo $websiteURL; ?>/system/SuperSmash/pages/images/favicon.ico">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="error-box">
|
||||
<?php $language = system\SuperSmash\SuperSmash::language(); ?>
|
||||
<div class="error-copyright"><small>{ERROR_COPYRIGHT}</small></div>
|
||||
<div class="error-header">{ERROR_LEVEL}</div>
|
||||
<div class="error-message">
|
||||
<p>
|
||||
<?php echo $language->get('notFoundErrorMessage'); ?><a href="mailto:<?php echo configuration('webmasterEmail');?>"> <?php echo $language->get('notFoundEmail'); ?></a>. <br/ > <br/ >
|
||||
</p>
|
||||
<b><?php echo $language->get('errorMessage'); ?></b> {MESSAGE}
|
||||
</div>
|
||||
</div>
|
||||
<br /><br />
|
||||
<div id="footer">
|
||||
<small>
|
||||
<?php echo $language->get('footerRendered'); ?> {elapsed} <?php echo $language->get('footerSeconds'); ?> {usage}<br />
|
||||
SuperSmash Framework © <?php echo date("Y");?>, <a href="http://www.SuperSmash.nl">SuperSmash</a>
|
||||
</small>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
BIN
system/SuperSmash/pages/font/SuperSmash.ttf
Normal file
BIN
system/SuperSmash/pages/font/SuperSmash.ttf
Normal file
Binary file not shown.
BIN
system/SuperSmash/pages/images/404.png
Normal file
BIN
system/SuperSmash/pages/images/404.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 76 KiB |
BIN
system/SuperSmash/pages/images/favicon.ico
Normal file
BIN
system/SuperSmash/pages/images/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.2 KiB |
BIN
system/SuperSmash/pages/images/footer.png
Normal file
BIN
system/SuperSmash/pages/images/footer.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.3 KiB |
Reference in New Issue
Block a user