2012-12-14 07:53:13 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Implementation of SetExpires view
|
|
|
|
*
|
|
|
|
* @category DMS
|
2013-02-14 11:10:53 +00:00
|
|
|
* @package SeedDMS
|
2012-12-14 07:53:13 +00:00
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
require_once("class.Bootstrap.php");
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class which outputs the html page for SetExpires view
|
|
|
|
*
|
|
|
|
* @category DMS
|
2013-02-14 11:10:53 +00:00
|
|
|
* @package SeedDMS
|
2012-12-14 07:53:13 +00:00
|
|
|
* @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@
|
|
|
|
*/
|
2013-02-14 11:10:53 +00:00
|
|
|
class SeedDMS_View_SetExpires extends SeedDMS_Bootstrap_Style {
|
2012-12-14 07:53:13 +00:00
|
|
|
|
|
|
|
function show() { /* {{{ */
|
|
|
|
$dms = $this->params['dms'];
|
|
|
|
$user = $this->params['user'];
|
|
|
|
$folder = $this->params['folder'];
|
|
|
|
$document = $this->params['document'];
|
|
|
|
|
|
|
|
$this->htmlStartPage(getMLText("document_title", array("documentname" => htmlspecialchars($document->getName()))));
|
|
|
|
$this->globalNavigation($folder);
|
|
|
|
$this->contentStart();
|
2013-03-08 16:55:14 +00:00
|
|
|
$this->pageNavigation($this->getFolderPathHTML($folder, true, $document), "view_document", $document);
|
2012-12-14 07:53:13 +00:00
|
|
|
$this->contentHeading(getMLText("set_expiry"));
|
|
|
|
$this->contentContainerStart();
|
|
|
|
|
|
|
|
if($document->expires())
|
|
|
|
$expdate = date('d-m-Y', $document->getExpires());
|
|
|
|
else
|
|
|
|
$expdate = '';
|
|
|
|
?>
|
|
|
|
|
|
|
|
<form action="../op/op.SetExpires.php" method="post">
|
|
|
|
<input type="hidden" name="documentid" value="<?php print $document->getID();?>">
|
|
|
|
|
|
|
|
<table class="table-condensed">
|
|
|
|
<tr>
|
|
|
|
<td><?php printMLText("expires");?>:</td>
|
|
|
|
<td>
|
2013-04-11 17:15:03 +00:00
|
|
|
<span class="input-append date" id="expirationdate" data-date="<?php echo $expdate; ?>" data-date-format="dd-mm-yyyy" data-date-language="<?php echo str_replace('_', '-', $this->params['session']->getLanguage()); ?>">
|
2012-12-14 07:53:13 +00:00
|
|
|
<input class="span4" size="16" name="expdate" type="text" value="<?php echo $expdate; ?>">
|
2013-01-29 08:16:26 +00:00
|
|
|
<span class="add-on"><i class="icon-calendar"></i></span>
|
2012-12-14 07:53:13 +00:00
|
|
|
</span>
|
|
|
|
<label class="checkbox inline">
|
|
|
|
<input type="checkbox" name="expires" value="false"<?php if (!$document->expires()) print " checked";?>><?php printMLText("does_not_expire");?><br>
|
|
|
|
</label>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td></td>
|
2013-01-24 09:28:41 +00:00
|
|
|
<td><input type="submit" class="btn" value="<?php printMLText("save");?>"></td>
|
2012-12-14 07:53:13 +00:00
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</form>
|
|
|
|
<?php
|
|
|
|
$this->contentContainerEnd();
|
|
|
|
$this->htmlEndPage();
|
|
|
|
} /* }}} */
|
|
|
|
}
|
|
|
|
?>
|