2012-12-14 07:53:13 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Implementation of EditFolder 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
|
|
|
|
*/
|
2021-04-18 05:08:00 +00:00
|
|
|
//require_once("class.Bootstrap.php");
|
2012-12-14 07:53:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class which outputs the html page for EditFolder 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@
|
|
|
|
*/
|
2021-04-18 05:08:00 +00:00
|
|
|
class SeedDMS_View_EditFolder extends SeedDMS_Theme_Style {
|
2012-12-14 07:53:13 +00:00
|
|
|
|
2016-03-18 14:33:18 +00:00
|
|
|
function js() { /* {{{ */
|
2012-12-14 07:53:13 +00:00
|
|
|
$strictformcheck = $this->params['strictformcheck'];
|
2016-03-18 14:33:18 +00:00
|
|
|
header('Content-Type: application/javascript; charset=UTF-8');
|
2021-05-27 19:57:12 +00:00
|
|
|
parent::jsTranslations(array('js_form_error', 'js_form_errors'));
|
2012-12-14 07:53:13 +00:00
|
|
|
?>
|
2016-03-18 14:33:18 +00:00
|
|
|
$(document).ready(function() {
|
2016-08-30 05:59:03 +00:00
|
|
|
$("#form1").validate({
|
2016-08-29 07:44:49 +00:00
|
|
|
messages: {
|
|
|
|
name: "<?php printMLText("js_no_name");?>",
|
|
|
|
comment: "<?php printMLText("js_no_comment");?>"
|
|
|
|
},
|
|
|
|
});
|
2016-03-18 14:33:18 +00:00
|
|
|
});
|
2012-12-14 07:53:13 +00:00
|
|
|
<?php
|
2016-03-18 14:33:18 +00:00
|
|
|
} /* }}} */
|
|
|
|
|
|
|
|
function show() { /* {{{ */
|
|
|
|
$dms = $this->params['dms'];
|
|
|
|
$user = $this->params['user'];
|
|
|
|
$folder = $this->params['folder'];
|
|
|
|
$attrdefs = $this->params['attrdefs'];
|
|
|
|
$rootfolderid = $this->params['rootfolderid'];
|
|
|
|
$strictformcheck = $this->params['strictformcheck'];
|
2021-09-22 07:59:33 +00:00
|
|
|
$nofolderformfields = $this->params['nofolderformfields'];
|
2016-03-18 14:33:18 +00:00
|
|
|
$orderby = $this->params['orderby'];
|
|
|
|
|
2020-08-27 05:52:52 +00:00
|
|
|
$this->htmlAddHeader('<script type="text/javascript" src="../views/'.$this->theme.'/vendors/jquery-validation/jquery.validate.js"></script>'."\n", 'js');
|
2021-05-27 19:57:12 +00:00
|
|
|
$this->htmlAddHeader('<script type="text/javascript" src="../views/'.$this->theme.'/styles/validation-default.js"></script>'."\n", 'js');
|
2016-08-29 07:44:49 +00:00
|
|
|
|
2016-03-18 14:33:18 +00:00
|
|
|
$this->htmlStartPage(getMLText("folder_title", array("foldername" => htmlspecialchars($folder->getName()))));
|
|
|
|
$this->globalNavigation($folder);
|
|
|
|
$this->contentStart();
|
|
|
|
$this->pageNavigation($this->getFolderPathHTML($folder, true), "view_folder", $folder);
|
2012-12-14 07:53:13 +00:00
|
|
|
$this->contentHeading(getMLText("edit_folder_props"));
|
|
|
|
?>
|
2017-01-04 06:03:05 +00:00
|
|
|
<form class="form-horizontal" action="../op/op.EditFolder.php" id="form1" name="form1" method="post">
|
2021-01-24 16:05:13 +00:00
|
|
|
<?php echo createHiddenFieldWithKey('editfolder'); ?>
|
2017-01-04 06:03:05 +00:00
|
|
|
<input type="hidden" name="folderid" value="<?php print $folder->getID();?>">
|
|
|
|
<input type="hidden" name="showtree" value="<?php echo showtree();?>">
|
2012-12-14 07:53:13 +00:00
|
|
|
<?php
|
2021-05-17 11:31:32 +00:00
|
|
|
$this->contentContainerStart();
|
2018-04-23 13:50:46 +00:00
|
|
|
$this->formField(
|
|
|
|
getMLText("name"),
|
2018-06-07 05:46:19 +00:00
|
|
|
array(
|
|
|
|
'element'=>'input',
|
|
|
|
'type'=>'text',
|
|
|
|
'name'=>'name',
|
|
|
|
'value'=>htmlspecialchars($folder->getName()),
|
|
|
|
'required'=>true
|
|
|
|
)
|
2018-04-23 13:50:46 +00:00
|
|
|
);
|
2021-09-22 07:59:33 +00:00
|
|
|
if(!$nofolderformfields || !in_array('comment', $nofolderformfields)) {
|
|
|
|
$this->formField(
|
|
|
|
getMLText("comment"),
|
|
|
|
array(
|
|
|
|
'element'=>'textarea',
|
|
|
|
'name'=>'comment',
|
|
|
|
'rows'=>4,
|
|
|
|
'cols'=>80,
|
|
|
|
'value'=>htmlspecialchars($folder->getComment()),
|
|
|
|
'required'=>$strictformcheck
|
|
|
|
)
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$this->formField(
|
|
|
|
null,
|
|
|
|
array(
|
|
|
|
'element'=>'input',
|
|
|
|
'type'=>'hidden',
|
|
|
|
'name'=>'comment',
|
|
|
|
'value'=>htmlspecialchars($folder->getComment()),
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
2012-12-14 07:53:13 +00:00
|
|
|
$parent = ($folder->getID() == $rootfolderid) ? false : $folder->getParent();
|
2021-09-22 07:59:33 +00:00
|
|
|
if(!$nofolderformfields || !in_array('sequence', $nofolderformfields)) {
|
|
|
|
if ($parent && $parent->getAccessMode($user) > M_READ) {
|
2024-03-25 09:58:16 +00:00
|
|
|
$this->formField(getMLText("sequence"), $this->getSequenceChooser($parent, 'f', $folder->getID()).($orderby != 's' ? "<br />".getMLText('order_by_sequence_off') : ''));
|
2021-09-22 07:59:33 +00:00
|
|
|
}
|
2012-12-14 07:53:13 +00:00
|
|
|
}
|
|
|
|
if($attrdefs) {
|
|
|
|
foreach($attrdefs as $attrdef) {
|
2017-06-09 13:13:49 +00:00
|
|
|
$arr = $this->callHook('editFolderAttribute', $folder, $attrdef);
|
2015-04-27 06:27:19 +00:00
|
|
|
if(is_array($arr)) {
|
2017-06-09 13:13:49 +00:00
|
|
|
if($arr) {
|
2021-03-19 09:49:51 +00:00
|
|
|
$this->formField($arr[0], $arr[1], isset($arr[2]) ? $arr[2] : null);
|
2017-06-09 13:13:49 +00:00
|
|
|
}
|
2019-10-19 06:27:38 +00:00
|
|
|
} elseif(is_string($arr)) {
|
2019-10-19 06:19:09 +00:00
|
|
|
echo $arr;
|
2015-04-27 06:27:19 +00:00
|
|
|
} else {
|
2018-04-23 13:50:46 +00:00
|
|
|
$this->formField(htmlspecialchars($attrdef->getName()), $this->getAttributeEditField($attrdef, $folder->getAttribute($attrdef)));
|
2017-01-04 06:58:24 +00:00
|
|
|
}
|
2012-12-14 07:53:13 +00:00
|
|
|
}
|
|
|
|
}
|
2019-10-19 06:19:09 +00:00
|
|
|
$arrs = $this->callHook('addFolderAttributes', $folder);
|
|
|
|
if(is_array($arrs)) {
|
|
|
|
foreach($arrs as $arr) {
|
2021-03-19 09:49:51 +00:00
|
|
|
$this->formField($arr[0], $arr[1], isset($arr[2]) ? $arr[2] : null);
|
2019-10-19 06:19:09 +00:00
|
|
|
}
|
2020-05-20 09:13:57 +00:00
|
|
|
} elseif(is_string($arrs)) {
|
2020-07-21 05:29:53 +00:00
|
|
|
echo $arrs;
|
2019-10-19 06:19:09 +00:00
|
|
|
}
|
2021-05-17 11:31:32 +00:00
|
|
|
$this->contentContainerEnd();
|
2020-08-27 05:52:52 +00:00
|
|
|
$this->formSubmit("<i class=\"fa fa-save\"></i> ".getMLText('save'));
|
2012-12-14 07:53:13 +00:00
|
|
|
?>
|
|
|
|
</form>
|
|
|
|
<?php
|
2016-03-15 07:30:53 +00:00
|
|
|
$this->contentEnd();
|
2012-12-14 07:53:13 +00:00
|
|
|
$this->htmlEndPage();
|
|
|
|
} /* }}} */
|
|
|
|
}
|
|
|
|
?>
|