, Jam Warehouse (Pty) Ltd, South Africa
* @package presentation.lookAndFeel.knowledgeTree.documentmanagement
*/
/**
* Prompts the user for a check in comment and revision type
*
* @param object the document we're checking in
*/
function renderCheckInPage($oDocument) {
global $default;
$sToRender = "
\n";
$sToRender .= "\n";
$sToRender .= "\n";
/*
$sToRender .= "\n\n\n\n";
*/
return $sToRender;
}
/**
* Displays the document view page with additional input controls
* for checking in the document
*
* @param object the document to view and check out
*/
function getCheckInPage($oDocument) {
$sToRender .= renderHeading("Document Detail");
$sToRender .= renderDocumentPath($oDocument, false) . "\n\n";
$sToRender .= renderCheckInPage($oDocument);
$sToRender .= renderDocumentData($oDocument, $bEdit);
return $sToRender;
}
?>