2015-05-12 17:05:02 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Implementation of ReviseDocument view
|
|
|
|
*
|
|
|
|
* @category DMS
|
|
|
|
* @package SeedDMS
|
|
|
|
* @license GPL 2
|
|
|
|
* @version @version@
|
|
|
|
* @author Uwe Steinmann <uwe@steinmann.cx>
|
|
|
|
* @copyright Copyright (C) 2002-2005 Markus Westphal,
|
|
|
|
* 2006-2008 Malcolm Cowe, 2010 Matteo Lucarelli,
|
|
|
|
* 2010-2012 Uwe Steinmann
|
|
|
|
* @version Release: @package_version@
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Include parent class
|
|
|
|
*/
|
2021-04-19 17:45:40 +00:00
|
|
|
//require_once("class.Bootstrap.php");
|
2015-05-12 17:05:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class which outputs the html page for ReviseDocument view
|
|
|
|
*
|
|
|
|
* @category DMS
|
|
|
|
* @package SeedDMS
|
|
|
|
* @author Markus Westphal, Malcolm Cowe, Uwe Steinmann <uwe@steinmann.cx>
|
|
|
|
* @copyright Copyright (C) 2002-2005 Markus Westphal,
|
|
|
|
* 2006-2008 Malcolm Cowe, 2010 Matteo Lucarelli,
|
|
|
|
* 2010-2012 Uwe Steinmann
|
|
|
|
* @version Release: @package_version@
|
|
|
|
*/
|
2021-04-19 17:45:40 +00:00
|
|
|
class SeedDMS_View_ReviseDocument extends SeedDMS_Theme_Style {
|
2015-05-12 17:05:02 +00:00
|
|
|
|
2016-03-21 05:22:01 +00:00
|
|
|
function js() { /* {{{ */
|
|
|
|
header('Content-Type: application/javascript; charset=UTF-8');
|
2015-05-12 17:05:02 +00:00
|
|
|
?>
|
|
|
|
function checkIndForm()
|
|
|
|
{
|
|
|
|
msg = new Array();
|
2018-01-30 18:20:51 +00:00
|
|
|
if (document.formind.revisionStatus.value == "") msg.push("<?php printMLText("js_no_revision_status");?>");
|
|
|
|
if (document.formind.comment.value == "") msg.push("<?php printMLText("js_no_comment");?>");
|
2015-05-12 17:05:02 +00:00
|
|
|
if (msg != "") {
|
|
|
|
noty({
|
|
|
|
text: msg.join('<br />'),
|
|
|
|
type: 'error',
|
|
|
|
dismissQueue: true,
|
|
|
|
layout: 'topRight',
|
|
|
|
theme: 'defaultTheme',
|
|
|
|
_timeout: 1500,
|
|
|
|
});
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
function checkGrpForm()
|
|
|
|
{
|
2018-01-30 18:20:51 +00:00
|
|
|
msg = new Array();
|
|
|
|
if (document.formgrp.revisionGroup.value == "") msg.push("<?php printMLText("js_no_revision_group");?>");
|
|
|
|
if (document.formgrp.revisionSatus.value == "") msg.push("<?php printMLText("js_no_revision_status");?>");
|
|
|
|
if (document.formgrp.comment.value == "") msg.push("<?php printMLText("js_no_comment");?>");
|
2015-05-12 17:05:02 +00:00
|
|
|
if (msg != "")
|
|
|
|
{
|
2016-03-21 05:22:01 +00:00
|
|
|
noty({
|
|
|
|
text: msg.join('<br />'),
|
|
|
|
type: 'error',
|
|
|
|
dismissQueue: true,
|
|
|
|
layout: 'topRight',
|
|
|
|
theme: 'defaultTheme',
|
|
|
|
_timeout: 1500,
|
|
|
|
});
|
2015-05-12 17:05:02 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return true;
|
|
|
|
}
|
2016-03-21 05:22:01 +00:00
|
|
|
$(document).ready(function() {
|
2018-01-30 18:20:51 +00:00
|
|
|
$('body').on('submit', '#formind', function(ev){
|
2016-03-21 05:22:01 +00:00
|
|
|
if(checkIndForm()) return;
|
|
|
|
event.preventDefault();
|
|
|
|
});
|
2018-01-30 18:20:51 +00:00
|
|
|
$('body').on('submit', '#formgrp', function(ev){
|
2016-03-21 05:22:01 +00:00
|
|
|
if(checkGrpForm()) return;
|
|
|
|
event.preventDefault();
|
|
|
|
});
|
|
|
|
});
|
2015-05-12 17:05:02 +00:00
|
|
|
<?php
|
2016-03-21 05:22:01 +00:00
|
|
|
} /* }}} */
|
|
|
|
|
|
|
|
function show() { /* {{{ */
|
|
|
|
$dms = $this->params['dms'];
|
|
|
|
$user = $this->params['user'];
|
|
|
|
$folder = $this->params['folder'];
|
|
|
|
$document = $this->params['document'];
|
|
|
|
$content = $this->params['version'];
|
|
|
|
$revisionid = $this->params['revisionid'];
|
|
|
|
|
|
|
|
$reviews = $content->getRevisionStatus();
|
|
|
|
foreach($reviews as $review) {
|
|
|
|
if($review['revisionID'] == $revisionid) {
|
|
|
|
$revisionStatus = $review;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->htmlStartPage(getMLText("document_title", array("documentname" => htmlspecialchars($document->getName()))));
|
|
|
|
$this->globalNavigation($folder);
|
|
|
|
$this->contentStart();
|
|
|
|
$this->pageNavigation($this->getFolderPathHTML($folder, true, $document), "view_document", $document);
|
2018-07-12 11:56:00 +00:00
|
|
|
$this->contentHeading(getMLText("submit_revision"));
|
2015-05-12 17:05:02 +00:00
|
|
|
$this->contentContainerStart();
|
|
|
|
|
|
|
|
// Display the Revision form.
|
2018-01-30 18:20:51 +00:00
|
|
|
$revisiontype = ($revisionStatus['type'] == 0) ? 'ind' : 'grp';
|
|
|
|
if($revisionStatus["status"]!=0) {
|
2015-05-12 17:05:02 +00:00
|
|
|
|
2018-01-30 18:20:51 +00:00
|
|
|
print "<table class=\"folderView\"><thead><tr>";
|
|
|
|
print "<th>".getMLText("status")."</th>";
|
|
|
|
print "<th>".getMLText("comment")."</th>";
|
|
|
|
print "<th>".getMLText("last_update")."</th>";
|
|
|
|
print "</tr></thead><tbody><tr>";
|
|
|
|
print "<td>";
|
|
|
|
printRevisionStatusText($revisionStatus["status"]);
|
|
|
|
print "</td>";
|
|
|
|
print "<td>".htmlspecialchars($revisionStatus["comment"])."</td>";
|
|
|
|
$indUser = $dms->getUser($revisionStatus["userID"]);
|
|
|
|
print "<td>".$revisionStatus["date"]." - ". htmlspecialchars($indUser->getFullname()) ."</td>";
|
|
|
|
print "</tr></tbody></table><br>\n";
|
|
|
|
}
|
2015-05-12 17:05:02 +00:00
|
|
|
?>
|
2021-02-09 10:09:02 +00:00
|
|
|
<form class="form-horizontal" method="post" action="../op/op.ReviseDocument.php" id="form<?= $revisiontype ?>" name="form<?= $revisiontype ?>">
|
2015-05-12 17:05:02 +00:00
|
|
|
<?php echo createHiddenFieldWithKey('revisedocument'); ?>
|
2021-02-09 10:09:02 +00:00
|
|
|
<?php
|
|
|
|
$this->formField(
|
|
|
|
getMLText("comment"),
|
|
|
|
array(
|
|
|
|
'element'=>'textarea',
|
|
|
|
'name'=>'comment',
|
|
|
|
'rows'=>4,
|
|
|
|
'cols'=>80
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$options = array();
|
|
|
|
if($revisionStatus['status'] != 1)
|
|
|
|
$options[] = array('1', getMLText("status_revised"));
|
|
|
|
if($revisionStatus['status'] != -1)
|
|
|
|
$options[] = array('-1', getMLText("status_needs_correction"));
|
|
|
|
$this->formField(
|
|
|
|
getMLText("revision_status"),
|
|
|
|
array(
|
|
|
|
'element'=>'select',
|
|
|
|
'name'=>'revisionStatus',
|
|
|
|
'options'=>$options,
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$this->formSubmit(getMLText('submit_revision'), $revisiontype.'Revision');
|
|
|
|
?>
|
2018-01-30 18:20:51 +00:00
|
|
|
<input type='hidden' name='revisionType' value='<?= $revisiontype ?>'/>
|
|
|
|
<?php if($revisiontype == 'grp'): ?>
|
2015-05-12 17:05:02 +00:00
|
|
|
<input type='hidden' name='revisionGroup' value='<?php echo $revisionStatus['required']; ?>'/>
|
2018-01-30 18:20:51 +00:00
|
|
|
<?php endif; ?>
|
2015-05-12 17:05:02 +00:00
|
|
|
<input type='hidden' name='documentid' value='<?php echo $document->getID() ?>'/>
|
|
|
|
<input type='hidden' name='version' value='<?php echo $content->getVersion() ?>'/>
|
|
|
|
</form>
|
|
|
|
<?php
|
|
|
|
$this->contentContainerEnd();
|
2016-03-21 05:42:27 +00:00
|
|
|
$this->contentEnd();
|
2015-05-12 17:05:02 +00:00
|
|
|
$this->htmlEndPage();
|
|
|
|
} /* }}} */
|
|
|
|
}
|
|
|
|
?>
|