* rewrite the doc-view page.

This commit is contained in:
wangchunsheng
2012-12-02 01:37:19 +00:00
parent fd5b777517
commit 5c60b09b12
5 changed files with 103 additions and 63 deletions
+89 -52
View File
@@ -11,58 +11,95 @@
*/
?>
<?php include '../../common/view/header.html.php';?>
<table class='table-1'>
<caption>DOC #<?php echo $doc->id . ' ' . $doc->title?></caption>
<tr>
<th class='rowhead'><?php echo $lang->doc->title;?></th>
<td <?php if($doc->deleted) echo "class='deleted'";?>><?php echo $doc->title;?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->doc->lib;?></th>
<td><?php echo $lib;?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->doc->module;?></th>
<td><?php echo $doc->moduleName ? $doc->moduleName : '/';?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->doc->type;?></th>
<td><?php echo $lang->doc->types[$doc->type];?></td>
</tr>
<th class='rowhead'><?php echo $lang->doc->title;?></th>
<td><?php echo $doc->title;?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->doc->keywords;?></th>
<td><?php echo $doc->keywords;?></td>
</tr>
<tr id='urlBox' <?php if($doc->type != 'url') echo "class='hidden'";?>>
<th class='rowhead'><?php echo $lang->doc->url;?></th>
<td><?php echo html::a(urldecode($doc->url), '', '_blank');?></td>
</tr>
<tr id='contentBox' <?php if($doc->type != 'text') echo "class='hidden'";?>>
<th class='rowhead'><?php echo $lang->doc->content;?></th>
<td class='content'><?php echo $doc->content;?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->doc->digest;?></th>
<td><?php echo nl2br($doc->digest);?></td>
</tr>
<tr id='fileBox' <?php if($doc->type != 'file') echo "class='hidden'";?>>
<th class='rowhead'><?php echo $lang->files;?></th>
<td><?php echo $this->fetch('file', 'printFiles', array('files' => $doc->files, 'fieldset' => 'false'));?></td>
<div id='titlebar'>
<div id='main' <?php if($doc->deleted) echo "class='deleted'";?>>DOC #<?php echo $doc->id . ' ' . $doc->title;?></div>
<div>
<div class='a-center f-16px strong'>
<?php
$browseLink = $this->session->docList ? $this->session->docList : inlink('browse');
$params = "docID=$doc->id";
if(!$doc->deleted)
{
ob_start();
common::printIcon('doc', 'edit', $params);
common::printIcon('doc', 'delete', $params, '', 'button', '', 'hiddenwin');
common::printDivider();
common::printRPN($browseLink, $preAndNext);
$actionLinks = ob_get_contents();
ob_end_clean();
echo $actionLinks;
}
?>
</div>
</div>
</div>
<table class='cont-rt5'>
<tr valign='top'>
<td>
<fieldset>
<legend><?php echo $lang->doc->digest;?></legend>
<div><?php echo $doc->digest;?></div>
</fieldset>
<fieldset>
<legend><?php echo $lang->doc->keywords;?></legend>
<div><?php echo $doc->keywords;?></div>
</fieldset>
<?php if($doc->type == 'url'):?>
<fieldset>
<legend><?php echo $lang->doc->url;?></legend>
<div><?php echo html::a(urldecode($doc->url), '', '_blank');?></div>
</fieldset>
<?php endif;?>
<?php if($doc->type == 'text'):?>
<fieldset>
<legend><?php echo $lang->doc->content;?></legend>
<div class='content'><?php echo $doc->content;?></div>
</fieldset>
<?php endif;?>
<?php if($doc->type == 'file'):?>
<?php echo $this->fetch('file', 'printFiles', array('files' => $doc->files, 'fieldset' => 'true'));?>
<?php endif;?>
<?php include '../../common/view/action.html.php';?>
<div class='a-center actionlink'><?php if(!$doc->deleted) echo $actionLinks;?></div>
</td>
<td class='divider'></td>
<td class='side'>
<fieldset>
<legend><?php echo $lang->doc->basicInfo;?></legend>
<table class='table-1 a-left fixed'>
<tr>
<th class='rowhead w-200'><?php echo $lang->doc->lib;?></th>
<td><?php echo $lib;?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->doc->module;?></th>
<td><?php echo $doc->moduleName ? $doc->moduleName : '/';?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->doc->type;?></th>
<td><?php echo $lang->doc->types[$doc->type];?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->doc->addedBy;?></th>
<td><?php echo $users[$doc->addedBy];?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->doc->addedDate;?></th>
<td><?php echo $doc->addedDate;?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->doc->editedBy;?></th>
<td><?php echo $users[$doc->editedBy];?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->doc->editedDate;?></th>
<td><?php echo $doc->editedDate;?></td>
</tr>
</table>
</td>
</tr>
</table>
<div class='a-center f-16px strong'>
<?php
$browseLink = $this->session->docList ? $this->session->docList : inlink('browse');
if(!$doc->deleted)
{
common::printLink('doc', 'edit', "docID=$doc->id", $lang->edit);
common::printLink('doc', 'delete', "docID=$doc->id", $lang->delete, 'hiddenwin');
}
echo html::a($browseLink, $lang->goback);
?>
</div>
<?php include '../../common/view/action.html.php';?>
<?php include '../../common/view/syntaxhighlighter.html.php';?>
<?php include './footer.html.php';?>