?? menu.tpl.php
字號:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="default.css" type="text/css" />
<title><?=h($project->getName())?></title>
</head>
<body>
<h1 id="top"><?=h($project->getName())?></h1>
<p><?=h($project->getDescription())?></p>
<p class="menuMid"><a href="#files">Files</a> | <a href="#functions">Functions</a> | <a href="#classes">Classes</a></p>
<hr />
<dl id="files">
<dt>Files</dt>
<dd>
<ul>
<?foreach ($project->getFiles() as $file):?>
<li><a href="<?=$file->getId();?>.htm"><?=h($file->getName())?></a> - <?=h($file->getDescription())?></li>
<?endforeach; unset($file)?>
</ul>
</dd>
</dl>
<p class="menuMid"><a href="index.htm">Index</a> | <a href="#top">Top</a> | <a href="javascript:history.back()">Back</a></p>
<hr />
<dl id="classes">
<dt>Classes</dt>
<dd>
<ul>
<?foreach ($project->getClasses() as $class):?>
<li><a href="<?=$class->getId();?>.htm"><?=h($class->getName())?></a> - <?=h($class->getDescription())?></li>
<?endforeach; unset($class)?>
</ul>
</dd>
</dl>
<p class="menuMid"><a href="index.htm">Index</a> | <a href="#top">Top</a> | <a href="javascript:history.back()">Back</a></p>
<hr />
<dl id="functions">
<dt>Functions</dt>
<dd>
<ul>
<?foreach ($project->getFunctions() as $func):?>
<li><a href="<?=$func->getParent()->getId();?>.htm#<?=$func->getId();?>"><?=h($func->getName())?></a> - <?=h($func->getDescription())?></li>
<?endforeach; unset($func)?>
</ul>
</dd>
</dl>
<p class="menuMid"><a href="index.htm">Index</a> | <a href="#top">Top</a> | <a href="javascript:history.back()">Back</a></p>
<p class="down"><?=jspd_default_gen()?></p>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -