תחליף:
PHP קוד:
<?php
class tpl_main {
function view_header($title, $css, $js, $pmk_js, $board_header) {
global $mklib, $mklib_board;
//$css = $mklib_board->import_css();
return <<<EOF
<?xml version="1.0" encoding="windows-1255"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html lang="he" dit="rtl">
<!-- begin document head -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1255" />
<meta name="generator" content="MKPortal" />
<meta http-equiv="Pragma" content="no-cache" />
<meta content="no-cache" http-equiv="no-cache" />
<meta http-equiv="Cache-Control" content="no-cache" />
{$title}
{$css}
{$board_header}
<script type="text/javascript" src="{$js}"></script>
{$pmk_js}
</head>
<body onload="javascript:GetPos()">
<!-- end document head -->
EOF;
}