Файл: core/Show.class.php
Строк: 38
<?php
defined('_CMEX_') or die('Error. You don`t have permision to access.');
class Show {
public function start() {
echo '<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd"><head>
<meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/vnd.microsoft.icon" href="/favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="img/apple-touch-icon.png">
<link rel="shortcut icon" href="img/apple-touch-icon.png">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Гостевая</title>
</head>
<body>';
}
public function end() {
echo '<div class="end">
'. COPY .'<br />
'. round(microtime(1) - MT, 4) .' сек.</div>
</body>
</html>';
exit();
}
public function err($var) {
echo '<div class="err">'. $var .'</div>';
}
public function msg($var) {
echo '<div class="msg">'. $var .'</div>';
}
}
?>