2012-12-14 07:53:13 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Implementation of Categories 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");
|
|
|
|
|
2017-12-04 14:23:27 +00:00
|
|
|
/**
|
|
|
|
* Include class to preview documents
|
|
|
|
*/
|
|
|
|
require_once("SeedDMS/Preview.php");
|
|
|
|
|
2012-12-14 07:53:13 +00:00
|
|
|
/**
|
|
|
|
* Class which outputs the html page for Categories 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_Categories extends SeedDMS_Bootstrap_Style {
|
2012-12-14 07:53:13 +00:00
|
|
|
|
2016-02-05 16:26:45 +00:00
|
|
|
function js() { /* {{{ */
|
|
|
|
$selcat = $this->params['selcategory'];
|
2016-02-17 10:43:19 +00:00
|
|
|
header('Content-Type: application/javascript');
|
2012-12-14 07:53:13 +00:00
|
|
|
?>
|
2016-02-05 16:26:45 +00:00
|
|
|
$(document).ready( function() {
|
|
|
|
$( "#selector" ).change(function() {
|
|
|
|
$('div.ajax').trigger('update', {categoryid: $(this).val()});
|
|
|
|
});
|
|
|
|
});
|
2012-12-14 07:53:13 +00:00
|
|
|
<?php
|
2017-12-19 09:52:24 +00:00
|
|
|
$this->printDeleteFolderButtonJs();
|
|
|
|
$this->printDeleteDocumentButtonJs();
|
2016-02-05 16:26:45 +00:00
|
|
|
} /* }}} */
|
2012-12-14 07:53:13 +00:00
|
|
|
|
2016-02-05 16:26:45 +00:00
|
|
|
function info() { /* {{{ */
|
|
|
|
$dms = $this->params['dms'];
|
|
|
|
$selcat = $this->params['selcategory'];
|
2017-12-04 14:23:27 +00:00
|
|
|
$cachedir = $this->params['cachedir'];
|
|
|
|
$previewwidth = $this->params['previewWidthList'];
|
|
|
|
$timeout = $this->params['timeout'];
|
2019-01-18 12:07:39 +00:00
|
|
|
$xsendfile = $this->params['xsendfile'];
|
2012-12-14 07:53:13 +00:00
|
|
|
|
2016-02-05 16:26:45 +00:00
|
|
|
if($selcat) {
|
|
|
|
$this->contentHeading(getMLText("category_info"));
|
2017-12-04 14:23:27 +00:00
|
|
|
$c = $selcat->countDocumentsByCategory();
|
2016-02-05 16:26:45 +00:00
|
|
|
echo "<table class=\"table table-condensed\">\n";
|
2017-12-04 14:23:27 +00:00
|
|
|
echo "<tr><td>".getMLText('document_count')."</td><td>".($c)."</td></tr>\n";
|
2016-02-05 16:26:45 +00:00
|
|
|
echo "</table>";
|
2017-12-04 14:23:27 +00:00
|
|
|
|
|
|
|
$documents = $selcat->getDocumentsByCategory(10);
|
2017-12-19 09:46:19 +00:00
|
|
|
if($documents) {
|
|
|
|
print "<table id=\"viewfolder-table\" class=\"table\">";
|
|
|
|
print "<thead>\n<tr>\n";
|
|
|
|
print "<th></th>\n";
|
|
|
|
print "<th>".getMLText("name")."</th>\n";
|
|
|
|
print "<th>".getMLText("status")."</th>\n";
|
|
|
|
print "<th>".getMLText("action")."</th>\n";
|
|
|
|
print "</tr>\n</thead>\n<tbody>\n";
|
2019-01-18 12:07:39 +00:00
|
|
|
$previewer = new SeedDMS_Preview_Previewer($cachedir, $previewwidth, $timeout, $xsendfile);
|
2017-12-19 09:46:19 +00:00
|
|
|
foreach($documents as $doc) {
|
|
|
|
echo $this->documentListRow($doc, $previewer);
|
|
|
|
}
|
|
|
|
print "</tbody></table>";
|
2017-12-04 14:23:27 +00:00
|
|
|
}
|
2016-02-05 16:26:45 +00:00
|
|
|
}
|
|
|
|
} /* }}} */
|
2012-12-14 07:53:13 +00:00
|
|
|
|
2017-12-04 12:45:48 +00:00
|
|
|
function actionmenu() { /* {{{ */
|
|
|
|
$dms = $this->params['dms'];
|
|
|
|
$user = $this->params['user'];
|
|
|
|
$selcat = $this->params['selcategory'];
|
2017-01-04 06:03:05 +00:00
|
|
|
|
2017-12-04 12:45:48 +00:00
|
|
|
if($selcat && !$selcat->isUsed()) {
|
2012-12-14 07:53:13 +00:00
|
|
|
?>
|
|
|
|
<form style="display: inline-block;" method="post" action="../op/op.Categories.php" >
|
|
|
|
<?php echo createHiddenFieldWithKey('removecategory'); ?>
|
2017-12-04 12:45:48 +00:00
|
|
|
<input type="hidden" name="categoryid" value="<?php echo $selcat->getID()?>">
|
2017-01-01 13:48:40 +00:00
|
|
|
<input type="hidden" name="action" value="removecategory">
|
2013-01-24 09:14:46 +00:00
|
|
|
<button class="btn" type="submit"><i class="icon-remove"></i> <?php echo getMLText("rm_document_category")?></button>
|
2012-12-14 07:53:13 +00:00
|
|
|
</form>
|
|
|
|
<?php
|
|
|
|
}
|
2017-12-04 12:45:48 +00:00
|
|
|
} /* }}} */
|
2017-01-04 06:03:05 +00:00
|
|
|
|
2017-12-04 12:45:48 +00:00
|
|
|
function showCategoryForm($category) { /* {{{ */
|
|
|
|
?>
|
2017-01-04 06:03:05 +00:00
|
|
|
<form class="form-horizontal" style="margin-bottom: 0px;" action="../op/op.Categories.php" method="post">
|
|
|
|
<?php if(!$category) { ?>
|
|
|
|
<?php echo createHiddenFieldWithKey('addcategory'); ?>
|
|
|
|
<input type="hidden" name="action" value="addcategory">
|
|
|
|
<?php } else { ?>
|
|
|
|
<?php echo createHiddenFieldWithKey('editcategory'); ?>
|
|
|
|
<input type="hidden" name="action" value="editcategory">
|
|
|
|
<input type="hidden" name="categoryid" value="<?php echo $category->getID()?>">
|
|
|
|
<?php } ?>
|
2018-04-23 13:50:46 +00:00
|
|
|
<?php
|
|
|
|
$this->formField(
|
|
|
|
getMLText("name"),
|
2018-06-07 05:46:19 +00:00
|
|
|
array(
|
|
|
|
'element'=>'input',
|
|
|
|
'type'=>'text',
|
|
|
|
'name'=>'name',
|
|
|
|
'value'=>($category ? htmlspecialchars($category->getName()) : '')
|
|
|
|
)
|
2018-04-23 13:50:46 +00:00
|
|
|
);
|
|
|
|
$this->formSubmit("<i class=\"icon-save\"></i> ".getMLText('save'));
|
|
|
|
?>
|
2017-01-04 06:03:05 +00:00
|
|
|
</form>
|
|
|
|
|
2016-02-05 16:26:45 +00:00
|
|
|
<?php
|
|
|
|
} /* }}} */
|
|
|
|
|
|
|
|
function form() { /* {{{ */
|
|
|
|
$selcat = $this->params['selcategory'];
|
|
|
|
|
|
|
|
$this->showCategoryForm($selcat);
|
|
|
|
} /* }}} */
|
|
|
|
|
|
|
|
function show() { /* {{{ */
|
|
|
|
$dms = $this->params['dms'];
|
|
|
|
$user = $this->params['user'];
|
|
|
|
$categories = $this->params['categories'];
|
|
|
|
$selcat = $this->params['selcategory'];
|
|
|
|
|
2017-12-19 09:52:24 +00:00
|
|
|
$this->htmlAddHeader('<script type="text/javascript" src="../styles/'.$this->theme.'/bootbox/bootbox.min.js"></script>'."\n", 'js');
|
|
|
|
|
2016-02-05 16:26:45 +00:00
|
|
|
$this->htmlStartPage(getMLText("admin_tools"));
|
|
|
|
$this->globalNavigation();
|
|
|
|
$this->contentStart();
|
|
|
|
$this->pageNavigation(getMLText("admin_tools"), "admin_tools");
|
|
|
|
|
|
|
|
$this->contentHeading(getMLText("global_document_categories"));
|
|
|
|
?>
|
|
|
|
<div class="row-fluid">
|
2018-04-26 06:50:44 +00:00
|
|
|
<div class="span6">
|
2016-11-04 07:31:43 +00:00
|
|
|
<form class="form-horizontal">
|
2017-12-04 12:45:48 +00:00
|
|
|
<select class="chzn-select" id="selector" class="input-xlarge">
|
2016-02-05 16:26:45 +00:00
|
|
|
<option value="-1"><?php echo getMLText("choose_category")?>
|
|
|
|
<option value="0"><?php echo getMLText("new_document_category")?>
|
|
|
|
<?php
|
|
|
|
foreach ($categories as $category) {
|
|
|
|
print "<option value=\"".$category->getID()."\" ".($selcat && $category->getID()==$selcat->getID() ? 'selected' : '').">" . htmlspecialchars($category->getName());
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</select>
|
2016-11-04 07:31:43 +00:00
|
|
|
</form>
|
2017-12-04 14:23:27 +00:00
|
|
|
<div class="ajax" style="margin-bottom: 15px;" data-view="Categories" data-action="actionmenu" <?php echo ($selcat ? "data-query=\"categoryid=".$selcat->getID()."\"" : "") ?>></div>
|
2016-02-05 16:26:45 +00:00
|
|
|
<div class="ajax" data-view="Categories" data-action="info" <?php echo ($selcat ? "data-query=\"categoryid=".$selcat->getID()."\"" : "") ?>></div>
|
|
|
|
</div>
|
|
|
|
|
2018-04-26 06:50:44 +00:00
|
|
|
<div class="span6">
|
|
|
|
<?php $this->contentContainerStart(); ?>
|
2016-02-05 16:26:45 +00:00
|
|
|
<div class="ajax" data-view="Categories" data-action="form" <?php echo ($selcat ? "data-query=\"categoryid=".$selcat->getID()."\"" : "") ?>></div>
|
2018-04-26 06:50:44 +00:00
|
|
|
<?php $this->contentContainerEnd(); ?>
|
2016-02-05 16:26:45 +00:00
|
|
|
</div>
|
2012-12-14 07:53:13 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php
|
2016-03-15 07:30:53 +00:00
|
|
|
$this->contentEnd();
|
2012-12-14 07:53:13 +00:00
|
|
|
$this->htmlEndPage();
|
|
|
|
} /* }}} */
|
|
|
|
}
|
|
|
|
?>
|