1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
<?php
namespace phpdotnet\phd;
class Package_PHP_ChunkedXHTML extends Package_PHP_Web {
public function __construct(
Config $config,
OutputHandler $outputHandler
) {
parent::__construct($config, $outputHandler);
$this->registerFormatName("PHP-Chunked-XHTML");
$this->setExt($this->config->ext === null ? ".html" : $this->config->ext);
}
public function __destruct() {
parent::__destruct();
}
public function header($id) {
$title = Format::getLongDescription($id);
static $cssLinks = null;
if ($cssLinks === null) {
$cssLinks = $this->createCSSLinks();
}
$header = <<<HEADER
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>$title</title>
{$cssLinks}
</head>
<body>
HEADER;
$nextLink = $prevLink = $upLink = '';
if ($prevId = Format::getPrevious($id)) {
$prev = array(
"href" => $this->getFilename($prevId) . $this->getExt(),
"desc" => $this->getShortDescription($prevId),
);
$prevLink = "<li style=\"float: left;\"><a href=\"{$prev["href"]}\">« {$prev["desc"]}</a></li>";
}
if ($nextId = Format::getNext($id)) {
$next = array(
"href" => $this->getFilename($nextId) . $this->getExt(),
"desc" => $this->getShortDescription($nextId),
);
$nextLink = "<li style=\"float: right;\"><a href=\"{$next["href"]}\">{$next["desc"]} »</a></li>";
}
if ($parentId = Format::getParent($id)) {
$up = array(
"href" => $this->getFilename($parentId) . $this->getExt(),
"desc" => $this->getShortDescription($parentId),
);
if ($up['href'] != 'index.html') {
$upLink = "<li><a href=\"{$up["href"]}\">{$up["desc"]}</a></li>";
}
}
$nav = <<<NAV
<div class="navheader">
<table width="100%" summary="Navigation header">
<tr>
<th colspan="3" align="center">{$title}</th>
</tr>
<tr>
<td align="left">{$prevLink}</td>
<th width="60%" align="center"> </th>
<td align="right">{$nextLink}</td>
</tr>
<tr>
<td align="center">
<ul>
<li><a href="index.html">PHP Manual</a></li>
{$upLink}
<li>{$title}</li>
</ul>
</td>
</tr>
</table>
<hr/>
</div>
<div class="chapter">
NAV;
$header .= $nav;
return $header;
}
public function footer($id)
{
return '</div></body></html>';
}
}
|