mirror of
https://git.code.sf.net/p/seeddms/code
synced 2024-11-26 23:42:11 +00:00
Merge branch 'seeddms-5.1.x' into seeddms-6.0.x
This commit is contained in:
commit
af004146e9
|
@ -49,6 +49,86 @@ class SeedDMS_View_Settings extends SeedDMS_Bootstrap_Style {
|
|||
}
|
||||
} /* }}} */
|
||||
|
||||
/**
|
||||
* Place arbitrary html in a headline
|
||||
*
|
||||
* @param string $text html code to be shown as headline
|
||||
*/
|
||||
protected function showRawConfigHeadline($text) { /* {{{ */
|
||||
?>
|
||||
<tr><td><b><?= $text ?></b></td></tr>
|
||||
<?php
|
||||
} /* }}} */
|
||||
|
||||
/**
|
||||
* Place text in a headline
|
||||
*
|
||||
* @param string $text text to be shown as headline
|
||||
*/
|
||||
protected function showConfigHeadline($title) { /* {{{ */
|
||||
$this->showRawConfigHeadline(htmlspecialchars(getMLText($title)));
|
||||
} /* }}} */
|
||||
|
||||
/**
|
||||
* Show a text input configuration option
|
||||
*
|
||||
* @param string $title title of the option
|
||||
* @param string $name name of html input field
|
||||
*/
|
||||
protected function showConfigText($title, $name) { /* {{{ */
|
||||
$settings = $this->params['settings'];
|
||||
?>
|
||||
<tr title="<?= getMLText($title."_desc") ?>">
|
||||
<td><?= getMLText($title) ?>:</td>
|
||||
<td><?php $this->showTextField($name, $settings->{"_".$name}); ?></td>
|
||||
</tr>
|
||||
<?php
|
||||
} /* }}} */
|
||||
|
||||
/**
|
||||
* Show a checkbox configuration option
|
||||
*
|
||||
* @param string $title title of the option
|
||||
* @param string $name name of html input field
|
||||
*/
|
||||
protected function showConfigCheckbox($title, $name) { /* {{{ */
|
||||
$settings = $this->params['settings'];
|
||||
?>
|
||||
<tr title="<?= getMLText($title."_desc") ?>">
|
||||
<td><?= getMLText($title) ?>:</td>
|
||||
<td><input name="<?= $name ?>" type="checkbox" <?php if ($settings->{"_".$name}) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<?php
|
||||
} /* }}} */
|
||||
|
||||
protected function showConfigOption($title, $name, $values, $multiple=false, $translate=false) { /* {{{ */
|
||||
$settings = $this->params['settings'];
|
||||
$isass = count(array_filter(array_keys($values), 'is_string')) > 0;
|
||||
// var_dump($values);
|
||||
// echo $isass ? 'asso' : 'indexed';
|
||||
?>
|
||||
<tr title="<?= getMLText($title."_desc") ?>">
|
||||
<td><?= getMLText($title) ?>:</td>
|
||||
<td>
|
||||
<?php if($multiple) { ?>
|
||||
<select name="<?= $name ?>[]" multiple>
|
||||
<?php } else { ?>
|
||||
<select name="<?= $name ?>">
|
||||
<?php }
|
||||
foreach($values as $i=>$value) {
|
||||
$optval = trim($isass ? $i : $value);
|
||||
echo '<option value="' . $optval . '" ';
|
||||
if (($multiple && in_array($optval, $settings->{"_".$name})) || (!$multiple && $optval == $settings->{"_".$name}))
|
||||
echo "selected";
|
||||
echo '>' . ($translate ? getMLText($value) : $value). '</option>';
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
} /* }}} */
|
||||
|
||||
function js() { /* {{{ */
|
||||
|
||||
header('Content-Type: application/javascript');
|
||||
|
@ -121,112 +201,28 @@ if(!is_writeable($settings->_configFilePath)) {
|
|||
<table class="table-condensed">
|
||||
<!--
|
||||
-- SETTINGS - SITE - DISPLAY
|
||||
-->
|
||||
<tr ><td><b> <?php printMLText("settings_Display");?></b></td> </tr>
|
||||
<tr title="<?php printMLText("settings_siteName_desc");?>">
|
||||
<td><?php printMLText("settings_siteName");?>:</td>
|
||||
<td><?php $this->showTextField('siteName', $settings->_siteName); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_footNote_desc");?>">
|
||||
<td><?php printMLText("settings_footNote");?>:</td>
|
||||
<td><?php $this->showTextField("footNote", $settings->_footNote); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_printDisclaimer_desc");?>">
|
||||
<td><?php printMLText("settings_printDisclaimer");?>:</td>
|
||||
<td><input name="printDisclaimer" type="checkbox" <?php if ($settings->_printDisclaimer) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_available_languages_desc");?>">
|
||||
<td><?php printMLText("settings_available_languages");?>:</td>
|
||||
<td>
|
||||
<select name="availablelanguages[]" multiple>
|
||||
<?php
|
||||
$languages = getAvailableLanguages();
|
||||
foreach($languages as $language)
|
||||
{
|
||||
echo '<option value="' . $language . '" ';
|
||||
if (in_array($language, $settings->_availablelanguages))
|
||||
echo "selected";
|
||||
echo '>' . getMLText($language) . '</option>';
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_language_desc");?>">
|
||||
<td><?php printMLText("settings_language");?>:</td>
|
||||
<td>
|
||||
<select name="language">
|
||||
<?php
|
||||
$languages = getAvailableLanguages();
|
||||
foreach($languages as $language)
|
||||
{
|
||||
echo '<option value="' . $language . '" ';
|
||||
if ($settings->_language==$language)
|
||||
echo "selected";
|
||||
echo '>' . getMLText($language) . '</option>';
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_theme_desc");?>">
|
||||
<td><?php printMLText("settings_theme");?>:</td>
|
||||
<td>
|
||||
<select name="theme">
|
||||
<?php
|
||||
$themes = UI::getStyles();
|
||||
foreach($themes as $theme)
|
||||
{
|
||||
echo '<option value="' . $theme . '" ';
|
||||
if ($settings->_theme==$theme)
|
||||
echo "selected";
|
||||
echo '>' . $theme . '</option>';
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_previewWidthList_desc");?>">
|
||||
<td><?php printMLText("settings_previewWidthList");?>:</td>
|
||||
<td><?php $this->showTextField("previewWidthList", $settings->_previewWidthList); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_previewWidthMenuList_desc");?>">
|
||||
<td><?php printMLText("settings_previewWidthMenuList");?>:</td>
|
||||
<td><?php $this->showTextField("previewWidthMenuList", $settings->_previewWidthMenuList); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_previewWidthDropFolderList_desc");?>">
|
||||
<td><?php printMLText("settings_previewWidthDropFolderList");?>:</td>
|
||||
<td><?php $this->showTextField("previewWidthDropFolderList", $settings->_previewWidthDropFolderList); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_previewWidthDetail_desc");?>">
|
||||
<td><?php printMLText("settings_previewWidthDetail");?>:</td>
|
||||
<td><?php $this->showTextField("previewWidthDetail", $settings->_previewWidthDetail); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_showFullPreview_desc");?>">
|
||||
<td><?php printMLText("settings_showFullPreview");?>:</td>
|
||||
<td><input name="showFullPreview" type="checkbox" <?php if ($settings->_showFullPreview) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_convertToPdf_desc");?>">
|
||||
<td><?php printMLText("settings_convertToPdf");?>:</td>
|
||||
<td><input name="convertToPdf" type="checkbox" <?php if ($settings->_convertToPdf) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_maxItemsPerPage_desc");?>">
|
||||
<td><?php printMLText("settings_maxItemsPerPage");?>:</td>
|
||||
<td><?php $this->showTextField("maxItemsPerPage", $settings->_maxItemsPerPage); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_incItemsPerPage_desc");?>">
|
||||
<td><?php printMLText("settings_incItemsPerPage");?>:</td>
|
||||
<td><?php $this->showTextField("incItemsPerPage", $settings->_incItemsPerPage); ?></td>
|
||||
</tr>
|
||||
-->
|
||||
<?php $this->showConfigHeadline('settings_Display'); ?>
|
||||
<?php $this->showConfigText('settings_siteName', 'siteName'); ?>
|
||||
<?php $this->showConfigText('settings_footNote', 'footNote'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_printDisclaimer', 'printDisclaimer'); ?>
|
||||
<?php $this->showConfigOption('settings_available_languages', 'availablelanguages', getAvailableLanguages(), true, true); ?>
|
||||
<?php $this->showConfigOption('settings_language', 'language', getAvailableLanguages(), false, true); ?>
|
||||
<?php $this->showConfigOption('settings_theme', 'theme', UI::getStyles(), false, false); ?>
|
||||
<?php $this->showConfigText('settings_previewWidthList', 'previewWidthList'); ?>
|
||||
<?php $this->showConfigText('settings_previewWidthMenuList', 'previewWidthMenuList'); ?>
|
||||
<?php $this->showConfigText('settings_previewWidthDropFolderList', 'previewWidthDropFolderList'); ?>
|
||||
<?php $this->showConfigText('settings_previewWidthDetail', 'previewWidthDetail'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_showFullPreview', 'showFullPreview'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_convertToPdf', 'convertToPdf'); ?>
|
||||
<?php $this->showConfigText('settings_maxItemsPerPage', 'maxItemsPerPage'); ?>
|
||||
<?php $this->showConfigText('settings_incItemsPerPage', 'incItemsPerPage'); ?>
|
||||
|
||||
<!--
|
||||
-- SETTINGS - SITE - EDITION
|
||||
-->
|
||||
<tr><td></td></tr><tr ><td><b> <?php printMLText("settings_Edition");?></b></td> </tr>
|
||||
<tr title="<?php printMLText("settings_strictFormCheck_desc");?>">
|
||||
<td><?php printMLText("settings_strictFormCheck");?>:</td>
|
||||
<td><input name="strictFormCheck" type="checkbox" <?php if ($settings->_strictFormCheck) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<?php $this->showConfigHeadline('settings_Edition'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_strictFormCheck', 'strictFormCheck'); ?>
|
||||
<tr title="<?php printMLText("settings_viewOnlineFileTypes_desc");?>">
|
||||
<td><?php printMLText("settings_viewOnlineFileTypes");?>:</td>
|
||||
<td><?php $this->showTextField("viewOnlineFileTypes", $settings->getViewOnlineFileTypesToString()); ?></td>
|
||||
|
@ -235,147 +231,32 @@ if(!is_writeable($settings->_configFilePath)) {
|
|||
<td><?php printMLText("settings_editOnlineFileTypes");?>:</td>
|
||||
<td><?php $this->showTextField("editOnlineFileTypes", $settings->getEditOnlineFileTypesToString()); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableConverting_desc");?>">
|
||||
<td><?php printMLText("settings_enableConverting");?>:</td>
|
||||
<td><input name="enableConverting" type="checkbox" <?php if ($settings->_enableConverting) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableEmail_desc");?>">
|
||||
<td><?php printMLText("settings_enableEmail");?>:</td>
|
||||
<td><input name="enableEmail" type="checkbox" <?php if ($settings->_enableEmail) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableUsersView_desc");?>">
|
||||
<td><?php printMLText("settings_enableUsersView");?>:</td>
|
||||
<td><input name="enableUsersView" type="checkbox" <?php if ($settings->_enableUsersView) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableFullSearch_desc");?>">
|
||||
<td><?php printMLText("settings_enableFullSearch");?>:</td>
|
||||
<td><input name="enableFullSearch" type="checkbox" <?php if ($settings->_enableFullSearch) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_maxSizeForFullText_desc");?>">
|
||||
<td><?php printMLText("settings_maxSizeForFullText");?>:</td>
|
||||
<td><?php $this->showTextField("maxSizeForFullText", $settings->_maxSizeForFullText); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_fullSearchEngine_desc");?>">
|
||||
<td><?php printMLText("settings_fullSearchEngine");?>:</td>
|
||||
<td>
|
||||
<select name="fullSearchEngine">
|
||||
<option value="lucene" <?php if ($settings->_fullSearchEngine=='lucene') echo "selected" ?>><?php printMLText("settings_fullSearchEngine_vallucene");?></option>
|
||||
<option value="sqlitefts" <?php if ($settings->_fullSearchEngine=='sqlitefts') echo "selected" ?>><?php printMLText("settings_fullSearchEngine_valsqlitefts");?></option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_defaultSearchMethod_desc");?>">
|
||||
<td><?php printMLText("settings_defaultSearchMethod");?>:</td>
|
||||
<td>
|
||||
<select name="defaultSearchMethod">
|
||||
<option value="database" <?php if ($settings->_defaultSearchMethod=='database') echo "selected" ?>><?php printMLText("settings_defaultSearchMethod_valdatabase");?></option>
|
||||
<option value="fulltext" <?php if ($settings->_defaultSearchMethod=='fulltext') echo "selected" ?>><?php printMLText("settings_defaultSearchMethod_valfulltext");?></option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_showSingleSearchHit_desc");?>">
|
||||
<td><?php printMLText("settings_showSingleSearchHit");?>:</td>
|
||||
<td><input name="showSingleSearchHit" type="checkbox" <?php if ($settings->_showSingleSearchHit) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_stopWordsFile_desc");?>">
|
||||
<td><?php printMLText("settings_stopWordsFile");?>:</td>
|
||||
<td><?php $this->showTextField("stopWordsFile", $settings->_stopWordsFile); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableClipboard_desc");?>">
|
||||
<td><?php printMLText("settings_enableClipboard");?>:</td>
|
||||
<td><input name="enableClipboard" type="checkbox" <?php if ($settings->_enableClipboard) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableMenuTasks_desc");?>">
|
||||
<td><?php printMLText("settings_enableMenuTasks");?>:</td>
|
||||
<td><input name="enableMenuTasks" type="checkbox" <?php if ($settings->_enableMenuTasks) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_tasksInMenu_desc");?>">
|
||||
<td><?php printMLText("settings_tasksInMenu");?>:</td>
|
||||
<td>
|
||||
<select name="tasksInMenu[]" multiple>
|
||||
<option value="review" <?php if (in_array('review', $settings->_tasksInMenu)) echo "selected" ?>><?php printMLText("settings_tasksInMenu_review");?></option>
|
||||
<option value="approval" <?php if (in_array('approval', $settings->_tasksInMenu)) echo "selected" ?>><?php printMLText("settings_tasksInMenu_approval");?></option>
|
||||
<option value="workflow" <?php if (in_array('workflow', $settings->_tasksInMenu)) echo "selected" ?>><?php printMLText("settings_tasksInMenu_workflow");?></option>
|
||||
<option value="receipt" <?php if (in_array('receipt', $settings->_tasksInMenu)) echo "selected" ?>><?php printMLText("settings_tasksInMenu_receipt");?></option>
|
||||
<option value="revision" <?php if (in_array('revision', $settings->_tasksInMenu)) echo "selected" ?>><?php printMLText("settings_tasksInMenu_revision");?></option>
|
||||
<option value="needscorrection" <?php if (in_array('needscorrection', $settings->_tasksInMenu)) echo "selected" ?>><?php printMLText("settings_tasksInMenu_needscorrection");?></option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableDropFolderList_desc");?>">
|
||||
<td><?php printMLText("settings_enableDropFolderList");?>:</td>
|
||||
<td><input name="enableDropFolderList" type="checkbox" <?php if ($settings->_enableDropFolderList) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableSessionList_desc");?>">
|
||||
<td><?php printMLText("settings_enableSessionList");?>:</td>
|
||||
<td><input name="enableSessionList" type="checkbox" <?php if ($settings->_enableSessionList) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableDropUpload_desc");?>">
|
||||
<td><?php printMLText("settings_enableDropUpload");?>:</td>
|
||||
<td><input name="enableDropUpload" type="checkbox" <?php if ($settings->_enableDropUpload) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableMultiUpload_desc");?>">
|
||||
<td><?php printMLText("settings_enableMultiUpload");?>:</td>
|
||||
<td><input name="enableMultiUpload" type="checkbox" <?php if ($settings->_enableMultiUpload) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableFolderTree_desc");?>">
|
||||
<td><?php printMLText("settings_enableFolderTree");?>:</td>
|
||||
<td><input name="enableFolderTree" type="checkbox" <?php if ($settings->_enableFolderTree) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_expandFolderTree_desc");?>">
|
||||
<td><?php printMLText("settings_expandFolderTree");?>:</td>
|
||||
<td>
|
||||
<SELECT name="expandFolderTree">
|
||||
<OPTION VALUE="0" <?php if ($settings->_expandFolderTree==0) echo "SELECTED" ?> ><?php printMLText("settings_expandFolderTree_val0");?></OPTION>
|
||||
<OPTION VALUE="1" <?php if ($settings->_expandFolderTree==1) echo "SELECTED" ?> ><?php printMLText("settings_expandFolderTree_val1");?></OPTION>
|
||||
<OPTION VALUE="2" <?php if ($settings->_expandFolderTree==2) echo "SELECTED" ?> ><?php printMLText("settings_expandFolderTree_val2");?></OPTION>
|
||||
</SELECT>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableRecursiveCount_desc");?>">
|
||||
<td><?php printMLText("settings_enableRecursiveCount");?>:</td>
|
||||
<td><input name="enableRecursiveCount" type="checkbox" <?php if ($settings->_enableRecursiveCount) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_maxRecursiveCount_desc");?>">
|
||||
<td><?php printMLText("settings_maxRecursiveCount");?>:</td>
|
||||
<td><?php $this->showTextField("maxRecursiveCount", $settings->_maxRecursiveCount); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableLanguageSelector_desc");?>">
|
||||
<td><?php printMLText("settings_enableLanguageSelector");?>:</td>
|
||||
<td><input name="enableLanguageSelector" type="checkbox" <?php if ($settings->_enableLanguageSelector) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableHelp_desc");?>">
|
||||
<td><?php printMLText("settings_enableHelp");?>:</td>
|
||||
<td><input name="enableHelp" type="checkbox" <?php if ($settings->_enableHelp) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableThemeSelector_desc");?>">
|
||||
<td><?php printMLText("settings_enableThemeSelector");?>:</td>
|
||||
<td><input name="enableThemeSelector" type="checkbox" <?php if ($settings->_enableThemeSelector) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_sortUsersInList_desc");?>">
|
||||
<td><?php printMLText("settings_sortUsersInList");?>:</td>
|
||||
<td>
|
||||
<select name="sortUsersInList">
|
||||
<option value="" <?php if ($settings->_sortUsersInList=='') echo "selected" ?> ><?php printMLText("settings_sortUsersInList_val_login");?></option>
|
||||
<option value="fullname" <?php if ($settings->_sortUsersInList=='fullname') echo "selected" ?> ><?php printMLText("settings_sortUsersInList_val_fullname");?></option>
|
||||
</select>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_sortFoldersDefault_desc");?>">
|
||||
<td><?php printMLText("settings_sortFoldersDefault");?>:</td>
|
||||
<td>
|
||||
<select name="sortFoldersDefault">
|
||||
<option value="u" <?php if ($settings->_sortFoldersDefault=='') echo "selected" ?> ><?php printMLText("settings_sortFoldersDefault_val_unsorted");?></option>
|
||||
<option value="s" <?php if ($settings->_sortFoldersDefault=='s') echo "selected" ?> ><?php printMLText("settings_sortFoldersDefault_val_sequence");?></option>
|
||||
<option value="n" <?php if ($settings->_sortFoldersDefault=='n') echo "selected" ?> ><?php printMLText("settings_sortFoldersDefault_val_name");?></option>
|
||||
</select>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_defaultDocPosition_desc");?>">
|
||||
<td><?php printMLText("settings_defaultDocPosition");?>:</td>
|
||||
<td>
|
||||
<select name="defaultDocPosition">
|
||||
<option value="end" <?php if ($settings->_defaultDocPosition=='end') echo "selected" ?> ><?php printMLText("settings_defaultDocPosition_val_end");?></option>
|
||||
<option value="start" <?php if ($settings->_defaultDocPosition=='start') echo "selected" ?> ><?php printMLText("settings_defaultDocPosition_val_start");?></option>
|
||||
</select>
|
||||
</tr>
|
||||
<?php $this->showConfigCheckbox('settings_enableConverting', 'enableConverting'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableEmail', 'enableEmail'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableUsersView', 'enableUsersView'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableFullSearch', 'enableFullSearch'); ?>
|
||||
<?php $this->showConfigText('settings_maxSizeForFullText', 'maxSizeForFullText'); ?>
|
||||
<?php $this->showConfigOption('settings_fullSearchEngine', 'fullSearchEngine', array('lucene'=>'settings_fullSearchEngine_vallucene', 'sqlitefts'=>'settings_fullSearchEngine_valsqlitefts'), false, true); ?>
|
||||
<?php $this->showConfigOption('settings_defaultSearchMethod', 'defaultSearchMethod', array('database'=>'settings_defaultSearchMethod_valdatabase', 'fulltext'=>'settings_defaultSearchMethod_valfulltext'), false, true); ?>
|
||||
<?php $this->showConfigCheckbox('settings_showSingleSearchHit', 'showSingleSearchHit'); ?>
|
||||
<?php $this->showConfigText('settings_stopWordsFile', 'stopWordsFile'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableClipboard', 'enableClipboard'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableMenuTasks', 'enableMenuTasks'); ?>
|
||||
<?php $this->showConfigOption('settings_tasksInMenu', 'tasksInMenu', array('review'=>'settings_tasksInMenu_review', 'approval'=>'settings_tasksInMenu_approval', 'workflow'=>'settings_tasksInMenu_workflow', 'receipt'=>'settings_tasksInMenu_receipt', 'revision'=>'settings_tasksInMenu_revision', 'needscorrection'=>'settings_tasksInMenu_needscorrection'), true, true); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableDropFolderList', 'enableDropFolderList'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableSessionList', 'enableSessionList'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableDropUpload', 'enableDropUpload'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableMultiUpload', 'enableMultiUpload'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableFolderTree', 'enableFolderTree'); ?>
|
||||
<?php $this->showConfigOption('settings_expandFolderTree', 'expandFolderTree', array(' 0'=>'settings_expandFolderTree_val0', ' 1'=>'settings_expandFolderTree_val1', ' 2'=>'settings_expandFolderTree_val2'), false, true); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableRecursiveCount', 'enableRecursiveCount'); ?>
|
||||
<?php $this->showConfigText('settings_maxRecursiveCount', 'maxRecursiveCount'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableLanguageSelector', 'enableLanguageSelector'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableHelp', 'enableHelp'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableThemeSelector', 'enableThemeSelector'); ?>
|
||||
<?php $this->showConfigOption('settings_sortUsersInList', 'sortUsersInList', array(' '=>'settings_sortUsersInList_val_login', 'fullname'=>'settings_sortUsersInList_val_fullname'), false, true); ?>
|
||||
<?php $this->showConfigOption('settings_sortFoldersDefault', 'sortFoldersDefault', array('u'=>'settings_sortFoldersDefault_val_unsorted', 's'=>'settings_sortFoldersDefault_val_sequence', 'n'=>'settings_sortFoldersDefault_val_name'), false, true); ?>
|
||||
<?php $this->showConfigOption('settings_defaultDocPosition', 'defaultDocPosition', array('end'=>'settings_defaultDocPosition_val_end', 'start'=>'settings_defaultDocPosition_val_start'), false, true); ?>
|
||||
<tr title="<?php printMLText("settings_libraryFolder_desc");?>">
|
||||
<td><?php printMLText("settings_libraryFolder");?>:</td>
|
||||
<td><?php $this->printFolderChooserHtml("form1", M_READWRITE, -1, $dms->getFolder($settings->_libraryFolder), 'libraryFolder');?></td>
|
||||
|
@ -384,42 +265,16 @@ if(!is_writeable($settings->_configFilePath)) {
|
|||
<!--
|
||||
-- SETTINGS - SITE - WEBDAV
|
||||
-->
|
||||
<tr><td></td></tr><tr ><td><b> <?php printMLText("settings_webdav");?></b></td> </tr>
|
||||
<tr title="<?php printMLText("settings_enableWebdavReplaceDoc_desc");?>">
|
||||
<td><?php printMLText("settings_enableWebdavReplaceDoc");?>:</td>
|
||||
<td><input name="enableWebdavReplaceDoc" type="checkbox" <?php if ($settings->_enableWebdavReplaceDoc) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<?php $this->showConfigHeadline('settings_webdav'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableWebdavReplaceDoc', 'enableWebdavReplaceDoc'); ?>
|
||||
|
||||
<!--
|
||||
-- SETTINGS - SITE - CALENDAR
|
||||
-->
|
||||
<tr><td></td></tr><tr ><td><b> <?php printMLText("settings_Calendar");?></b></td> </tr>
|
||||
<tr title="<?php printMLText("settings_enableCalendar_desc");?>">
|
||||
<td><?php printMLText("settings_enableCalendar");?>:</td>
|
||||
<td><input name="enableCalendar" type="checkbox" <?php if ($settings->_enableCalendar) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_calendarDefaultView_desc");?>">
|
||||
<td><?php printMLText("settings_calendarDefaultView");?>:</td>
|
||||
<td>
|
||||
<SELECT name="calendarDefaultView">
|
||||
<OPTION VALUE="w" <?php if ($settings->_calendarDefaultView=="w") echo "SELECTED" ?> ><?php printMLText("week_view");?></OPTION>
|
||||
<OPTION VALUE="m" <?php if ($settings->_calendarDefaultView=="m") echo "SELECTED" ?> ><?php printMLText("month_view");?></OPTION>
|
||||
<OPTION VALUE="y" <?php if ($settings->_calendarDefaultView=="y") echo "SELECTED" ?> ><?php printMLText("year_view");?></OPTION>
|
||||
</SELECT>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_firstDayOfWeek_desc");?>">
|
||||
<td><?php printMLText("settings_firstDayOfWeek");?>:</td>
|
||||
<td>
|
||||
<SELECT name="firstDayOfWeek">
|
||||
<OPTION VALUE="0" <?php if ($settings->_firstDayOfWeek=="0") echo "SELECTED" ?> ><?php printMLText("sunday");?></OPTION>
|
||||
<OPTION VALUE="1" <?php if ($settings->_firstDayOfWeek=="1") echo "SELECTED" ?> ><?php printMLText("monday");?></OPTION>
|
||||
<OPTION VALUE="2" <?php if ($settings->_firstDayOfWeek=="2") echo "SELECTED" ?> ><?php printMLText("tuesday");?></OPTION>
|
||||
<OPTION VALUE="3" <?php if ($settings->_firstDayOfWeek=="3") echo "SELECTED" ?> ><?php printMLText("wednesday");?></OPTION>
|
||||
<OPTION VALUE="4" <?php if ($settings->_firstDayOfWeek=="4") echo "SELECTED" ?> ><?php printMLText("thursday");?></OPTION>
|
||||
<OPTION VALUE="5" <?php if ($settings->_firstDayOfWeek=="5") echo "SELECTED" ?> ><?php printMLText("friday");?></OPTION>
|
||||
<OPTION VALUE="6" <?php if ($settings->_firstDayOfWeek=="6") echo "SELECTED" ?> ><?php printMLText("saturday");?></OPTION>
|
||||
</SELECT>
|
||||
</tr>
|
||||
<?php $this->showConfigHeadline('settings_Calendar'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableCalendar', 'enableCalendar'); ?>
|
||||
<?php $this->showConfigOption('settings_calendarDefaultView', 'calendarDefaultView', array('w'=>'week_view', 'm'=>'month_view', 'y'=>'year_view'), false, true); ?>
|
||||
<?php $this->showConfigOption('settings_firstDayOfWeek', 'firstDayOfWeek', array(' 0'=>'sunday', ' 1'=>'monday', ' 2'=>'tuesday', ' 3'=>'wednesday', ' 4'=>'thursday', ' 5'=>'friday', ' 6'=>'saturday'), false, true); ?>
|
||||
</table>
|
||||
<?php $this->contentContainerEnd(); ?>
|
||||
</div>
|
||||
|
@ -430,186 +285,56 @@ if(!is_writeable($settings->_configFilePath)) {
|
|||
<!--
|
||||
-- SETTINGS - SYSTEM - SERVER
|
||||
-->
|
||||
<tr ><td><b> <?php printMLText("settings_Server");?></b></td> </tr>
|
||||
<tr title="<?php printMLText("settings_rootDir_desc");?>">
|
||||
<td><?php printMLText("settings_rootDir");?>:</td>
|
||||
<td><?php $this->showTextField("rootDir", $settings->_rootDir); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_httpRoot_desc");?>">
|
||||
<td><?php printMLText("settings_httpRoot");?>:</td>
|
||||
<td><?php $this->showTextField("httpRoot", $settings->_httpRoot); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_contentDir_desc");?>">
|
||||
<td><?php printMLText("settings_contentDir");?>:</td>
|
||||
<td><?php $this->showTextField("contentDir", $settings->_contentDir); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_backupDir_desc");?>">
|
||||
<td><?php printMLText("settings_backupDir");?>:</td>
|
||||
<td><?php $this->showTextField("backupDir", $settings->_backupDir); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_cacheDir_desc");?>">
|
||||
<td><?php printMLText("settings_cacheDir");?>:</td>
|
||||
<td><?php $this->showTextField("cacheDir", $settings->_cacheDir); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_stagingDir_desc");?>">
|
||||
<td><?php printMLText("settings_stagingDir");?>:</td>
|
||||
<td><?php $this->showTextField("stagingDir", $settings->_stagingDir); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_luceneDir_desc");?>">
|
||||
<td><?php printMLText("settings_luceneDir");?>:</td>
|
||||
<td><?php $this->showTextField("luceneDir", $settings->_luceneDir); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_dropFolderDir_desc");?>">
|
||||
<td><?php printMLText("settings_dropFolderDir");?>:</td>
|
||||
<td><?php $this->showTextField("dropFolderDir", $settings->_dropFolderDir); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_checkOutDir_desc");?>">
|
||||
<td><?php printMLText("settings_checkOutDir");?>:</td>
|
||||
<td><?php $this->showTextField("checkOutDir", $settings->_checkOutDir); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_createCheckOutDir_desc");?>">
|
||||
<td><?php printMLText("settings_createCheckOutDir");?>:</td>
|
||||
<td><input type="checkbox" name="createCheckOutDir" <?php if($settings->_createCheckOutDir) echo "checked" ?> /></td>
|
||||
<tr title="<?php printMLText("settings_repositoryUrl_desc");?>">
|
||||
<td><?php printMLText("settings_repositoryUrl");?>:</td>
|
||||
<td><?php $this->showTextField("repositoryUrl", $settings->_repositoryUrl); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_logFileEnable_desc");?>">
|
||||
<td><?php printMLText("settings_logFileEnable");?>:</td>
|
||||
<td><input name="logFileEnable" type="checkbox" <?php if ($settings->_logFileEnable) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_logFileRotation_desc");?>">
|
||||
<td><?php printMLText("settings_logFileRotation");?>:</td>
|
||||
<td>
|
||||
<SELECT name="logFileRotation">
|
||||
<OPTION VALUE="h" <?php if ($settings->_logFileRotation=="h") echo "SELECTED" ?> ><?php printMLText("hourly");?></OPTION>
|
||||
<OPTION VALUE="d" <?php if ($settings->_logFileRotation=="d") echo "SELECTED" ?> ><?php printMLText("daily");?></OPTION>
|
||||
<OPTION VALUE="m" <?php if ($settings->_logFileRotation=="m") echo "SELECTED" ?> ><?php printMLText("monthly");?></OPTION>
|
||||
</SELECT>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableLargeFileUpload_desc");?>">
|
||||
<td><?php printMLText("settings_enableLargeFileUpload");?>:</td>
|
||||
<td><input name="enableLargeFileUpload" type="checkbox" <?php if ($settings->_enableLargeFileUpload) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_partitionSize_desc");?>">
|
||||
<td><?php printMLText("settings_partitionSize");?>:</td>
|
||||
<td><?php $this->showTextField("partitionSize", $settings->_partitionSize); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_maxUploadSize_desc");?>">
|
||||
<td><?php printMLText("settings_maxUploadSize");?>:</td>
|
||||
<td><?php $this->showTextField("maxUploadSize", $settings->_maxUploadSize); ?></td>
|
||||
</tr>
|
||||
<?php $this->showConfigHeadline('settings_Server'); ?>
|
||||
<?php $this->showConfigText('settings_rootDir', 'rootDir'); ?>
|
||||
<?php $this->showConfigText('settings_httpRoot', 'httpRoot'); ?>
|
||||
<?php $this->showConfigText('settings_contentDir', 'contentDir'); ?>
|
||||
<?php $this->showConfigText('settings_backupDir', 'backupDir'); ?>
|
||||
<?php $this->showConfigText('settings_cacheDir', 'cacheDir'); ?>
|
||||
<?php $this->showConfigText('settings_stagingDir', 'stagingDir'); ?>
|
||||
<?php $this->showConfigText('settings_luceneDir', 'luceneDir'); ?>
|
||||
<?php $this->showConfigText('settings_dropFolderDir', 'dropFolderDir'); ?>
|
||||
<?php $this->showConfigText('settings_checkOutDir', 'checkOutDir'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_createCheckOutDir', 'createCheckOutDir'); ?>
|
||||
<?php $this->showConfigText('settings_repositoryUrl', 'repositoryUrl'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_logFileEnable', 'logFileEnable'); ?>
|
||||
<?php $this->showConfigOption('settings_logFileRotation', 'logFileRotation', array('h'=>'hourly', 'd'=>'daily', 'm'=>'monthly'), false, true); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableLargeFileUpload', 'enableLargeFileUpload'); ?>
|
||||
<?php $this->showConfigText('settings_partitionSize', 'partitionSize'); ?>
|
||||
<?php $this->showConfigText('settings_maxUploadSize', 'maxUploadSize'); ?>
|
||||
<!--
|
||||
-- SETTINGS - SYSTEM - AUTHENTICATION
|
||||
-->
|
||||
<tr ><td><b> <?php printMLText("settings_Authentication");?></b></td> </tr>
|
||||
<tr title="<?php printMLText("settings_enableGuestLogin_desc");?>">
|
||||
<td><?php printMLText("settings_enableGuestLogin");?>:</td>
|
||||
<td><input name="enableGuestLogin" type="checkbox" <?php if ($settings->_enableGuestLogin) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableGuestAutoLogin_desc");?>">
|
||||
<td><?php printMLText("settings_enableGuestAutoLogin");?>:</td>
|
||||
<td><input name="enableGuestAutoLogin" type="checkbox" <?php if ($settings->_enableGuestAutoLogin) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enable2FactorAuthentication");?>">
|
||||
<td><?php printMLText("settings_enable2FactorAuthentication");?>:</td>
|
||||
<td><input name="enable2FactorAuthentication" type="checkbox" <?php if ($settings->_enable2FactorAuthentication) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_restricted_desc");?>">
|
||||
<td><?php printMLText("settings_restricted");?>:</td>
|
||||
<td><input name="restricted" type="checkbox" <?php if ($settings->_restricted) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableUserImage_desc");?>">
|
||||
<td><?php printMLText("settings_enableUserImage");?>:</td>
|
||||
<td><input name="enableUserImage" type="checkbox" <?php if ($settings->_enableUserImage) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_disableSelfEdit_desc");?>">
|
||||
<td><?php printMLText("settings_disableSelfEdit");?>:</td>
|
||||
<td><input name="disableSelfEdit" type="checkbox" <?php if ($settings->_disableSelfEdit) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enablePasswordForgotten_desc");?>">
|
||||
<td><?php printMLText("settings_enablePasswordForgotten");?>:</td>
|
||||
<td><input name="enablePasswordForgotten" type="checkbox" <?php if ($settings->_enablePasswordForgotten) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_passwordStrength_desc");?>">
|
||||
<td><?php printMLText("settings_passwordStrength");?>:</td>
|
||||
<td><?php $this->showTextField("passwordStrength", $settings->_passwordStrength); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_passwordStrengthAlgorithm_desc");?>">
|
||||
<td><?php printMLText("settings_passwordStrengthAlgorithm");?>:</td>
|
||||
<td>
|
||||
<select name="passwordStrengthAlgorithm">
|
||||
<option value="simple" <?php if ($settings->_passwordStrengthAlgorithm=='simple') echo "selected" ?>><?php printMLText("settings_passwordStrengthAlgorithm_valsimple");?></option>
|
||||
<option value="advanced" <?php if ($settings->_passwordStrengthAlgorithm=='advanced') echo "selected" ?>><?php printMLText("settings_passwordStrengthAlgorithm_valadvanced");?></option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_passwordExpiration_desc");?>">
|
||||
<td><?php printMLText("settings_passwordExpiration");?>:</td>
|
||||
<td><?php $this->showTextField("passwordExpiration", $settings->_passwordExpiration); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_passwordHistory_desc");?>">
|
||||
<td><?php printMLText("settings_passwordHistory");?>:</td>
|
||||
<td><?php $this->showTextField("passwordHistory", $settings->_passwordHistory); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_loginFailure_desc");?>">
|
||||
<td><?php printMLText("settings_loginFailure");?>:</td>
|
||||
<td><?php $this->showTextField("loginFailure", $settings->_loginFailure); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_autoLoginUser_desc");?>">
|
||||
<td><?php printMLText("settings_autoLoginUser");?>:</td>
|
||||
<td><?php $this->showTextField("autoLoginUser", $settings->_autoLoginUser); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_quota_desc");?>">
|
||||
<td><?php printMLText("settings_quota");?>:</td>
|
||||
<td><?php $this->showTextField("quota", $settings->_quota); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_undelUserIds_desc");?>">
|
||||
<td><?php printMLText("settings_undelUserIds");?>:</td>
|
||||
<td><?php $this->showTextField("undelUserIds", $settings->_undelUserIds); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_encryptionKey_desc");?>">
|
||||
<td><?php printMLText("settings_encryptionKey");?>:</td>
|
||||
<td><?php $this->showTextField("encryptionKey", $settings->_encryptionKey); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_cookieLifetime_desc");?>">
|
||||
<td><?php printMLText("settings_cookieLifetime");?>:</td>
|
||||
<td><?php $this->showTextField("cookieLifetime", $settings->_cookieLifetime); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_defaultAccessDocs_desc");?>">
|
||||
<td><?php printMLText("settings_defaultAccessDocs");?>:</td>
|
||||
<td>
|
||||
<select name="defaultAccessDocs">
|
||||
<option value="0" <?php if ($settings->_defaultAccessDocs==0) echo "selected" ?>><?php printMLText("inherited");?></option>
|
||||
<option value="<?php echo M_NONE; ?>" <?php if ($settings->_defaultAccessDocs==M_NONE) echo "selected" ?>><?php printMLText("access_mode_none");?></option>
|
||||
<option value="<?php echo M_READ; ?>" <?php if ($settings->_defaultAccessDocs==M_READ) echo "selected" ?>><?php printMLText("access_mode_read");?></option>
|
||||
<option value="<?php echo M_READWRITE; ?>" <?php if ($settings->_defaultAccessDocs==M_READWRITE) echo "selected" ?>><?php printMLText("access_mode_readwrite");?></option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<?php $this->showConfigHeadline('settings_Authentication'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableGuestLogin', 'enableGuestLogin'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableGuestAutoLogin', 'enableGuestAutoLogin'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enable2FactorAuthentication', 'enable2FactorAuthentication'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_restricted', 'restricted'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableUserImage', 'enableUserImage'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_disableSelfEdit', 'disableSelfEdit'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enablePasswordForgotten', 'enablePasswordForgotten'); ?>
|
||||
<?php $this->showConfigText('settings_passwordStrength', 'passwordStrength'); ?>
|
||||
<?php $this->showConfigOption('settings_passwordStrengthAlgorithm', 'passwordStrengthAlgorithm', array('simple'=>'settings_passwordStrengthAlgorithm_valsimple', 'advanced'=>'settings_passwordStrengthAlgorithm_valadvanced'), false, true); ?>
|
||||
<?php $this->showConfigText('settings_passwordExpiration', 'passwordExpiration'); ?>
|
||||
<?php $this->showConfigText('settings_passwordHistory', 'passwordHistory'); ?>
|
||||
<?php $this->showConfigText('settings_loginFailure', 'loginFailure'); ?>
|
||||
<?php $this->showConfigText('settings_autoLoginUser', 'autoLoginUser'); ?>
|
||||
<?php $this->showConfigText('settings_quota', 'quota'); ?>
|
||||
<?php $this->showConfigText('settings_undelUserIds', 'undelUserIds'); ?>
|
||||
<?php $this->showConfigText('settings_encryptionKey', 'encryptionKey'); ?>
|
||||
<?php $this->showConfigText('settings_cookieLifetime', 'cookieLifetime'); ?>
|
||||
<?php $this->showConfigOption('settings_defaultAccessDocs', 'defaultAccessDocs', array(' 0'=>'inherited', ' '.M_NONE=>'access_mode_none', ' '.M_READ=>'access_mode_read', ' '.M_READWRITE=>'access_mode_readwrite'), false, true); ?>
|
||||
|
||||
<!-- TODO Connectors -->
|
||||
|
||||
<!--
|
||||
-- SETTINGS - SYSTEM - DATABASE
|
||||
-->
|
||||
<tr ><td><b> <?php printMLText("settings_Database");?></b></td> </tr>
|
||||
<tr title="<?php printMLText("settings_dbDriver_desc");?>">
|
||||
<td><?php printMLText("settings_dbDriver");?>:</td>
|
||||
<td><?php $this->showTextField("dbDriver", $settings->_dbDriver); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_dbHostname_desc");?>">
|
||||
<td><?php printMLText("settings_dbHostname");?>:</td>
|
||||
<td><?php $this->showTextField("dbHostname", $settings->_dbHostname); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_dbDatabase_desc");?>">
|
||||
<td><?php printMLText("settings_dbDatabase");?>:</td>
|
||||
<td><?php $this->showTextField("dbDatabase", $settings->_dbDatabase); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_dbUser_desc");?>">
|
||||
<td><?php printMLText("settings_dbUser");?>:</td>
|
||||
<td><?php $this->showTextField("dbUser", $settings->_dbUser); ?></td>
|
||||
</tr>
|
||||
<?php $this->showConfigHeadline('settings_Database'); ?>
|
||||
<?php $this->showConfigText('settings_dbDriver', 'dbDriver'); ?>
|
||||
<?php $this->showConfigText('settings_dbHostname', 'dbHostname'); ?>
|
||||
<?php $this->showConfigText('settings_dbDatabase', 'dbDatabase'); ?>
|
||||
<?php $this->showConfigText('settings_dbUser', 'dbUser'); ?>
|
||||
<tr title="<?php printMLText("settings_dbPass_desc");?>">
|
||||
<td><?php printMLText("settings_dbPass");?>:</td>
|
||||
<td><?php $this->showTextField("dbPass", $settings->_dbPass, 'password'); ?></td>
|
||||
|
@ -617,24 +342,13 @@ if(!is_writeable($settings->_configFilePath)) {
|
|||
|
||||
<!--
|
||||
-- SETTINGS - SYSTEM - SMTP
|
||||
-->
|
||||
<tr ><td><b> <?php printMLText("settings_SMTP");?></b></td><td><a class="btn sendtestmail"><?php printMLText('send_test_mail'); ?></a></td> </tr>
|
||||
<tr title="<?php printMLText("settings_smtpServer_desc");?>">
|
||||
<td><?php printMLText("settings_smtpServer");?>:</td>
|
||||
<td><?php $this->showTextField("smtpServer", $settings->_smtpServer); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_smtpPort_desc");?>">
|
||||
<td><?php printMLText("settings_smtpPort");?>:</td>
|
||||
<td><?php $this->showTextField("smtpPort", $settings->_smtpPort); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_smtpSendFrom_desc");?>">
|
||||
<td><?php printMLText("settings_smtpSendFrom");?>:</td>
|
||||
<td><?php $this->showTextField("smtpSendFrom", $settings->_smtpSendFrom); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_smtpUser_desc");?>">
|
||||
<td><?php printMLText("settings_smtpUser");?>:</td>
|
||||
<td><?php $this->showTextField("smtpUser", $settings->_smtpUser); ?></td>
|
||||
</tr>
|
||||
-->
|
||||
<tr ><td><b> <?php printMLText("settings_SMTP");?></b></td><td><a class="btn sendtestmail"><?php printMLText('send_test_mail'); ?></a></td> </tr>
|
||||
<?php //$this->showConfigHeadline('settings_SMTP'); ?>
|
||||
<?php $this->showConfigText('settings_smtpServer', 'smtpServer'); ?>
|
||||
<?php $this->showConfigText('settings_smtpPort', 'smtpPort'); ?>
|
||||
<?php $this->showConfigText('settings_smtpSendFrom', 'smtpSendFrom'); ?>
|
||||
<?php $this->showConfigText('settings_smtpUser', 'smtpUser'); ?>
|
||||
<tr title="<?php printMLText("settings_smtpPassword_desc");?>">
|
||||
<td><?php printMLText("settings_smtpPassword");?>:</td>
|
||||
<td><input type="password" name="smtpPassword" value="<?php echo $settings->_smtpPassword ?>" /></td>
|
||||
|
@ -650,204 +364,71 @@ if(!is_writeable($settings->_configFilePath)) {
|
|||
<!--
|
||||
-- SETTINGS - ADVANCED - DISPLAY
|
||||
-->
|
||||
<tr ><td><b> <?php printMLText("settings_Display");?></b></td> </tr>
|
||||
<tr title="<?php printMLText("settings_siteDefaultPage_desc");?>">
|
||||
<td><?php printMLText("settings_siteDefaultPage");?>:</td>
|
||||
<td><?php $this->showTextField("siteDefaultPage", $settings->_siteDefaultPage); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_rootFolderID_desc");?>">
|
||||
<td><?php printMLText("settings_rootFolderID");?>:</td>
|
||||
<td><?php $this->showTextField("rootFolderID", $settings->_rootFolderID); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_titleDisplayHack_desc");?>">
|
||||
<td><?php printMLText("settings_titleDisplayHack");?>:</td>
|
||||
<td><input name="titleDisplayHack" type="checkbox" <?php if ($settings->_titleDisplayHack) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_showMissingTranslations_desc");?>">
|
||||
<td><?php printMLText("settings_showMissingTranslations");?>:</td>
|
||||
<td><input name="showMissingTranslations" type="checkbox" <?php if ($settings->_showMissingTranslations) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<?php $this->showConfigHeadline('settings_Display'); ?>
|
||||
<?php $this->showConfigText('settings_siteDefaultPage', 'siteDefaultPage'); ?>
|
||||
<?php $this->showConfigText('settings_rootFolderID', 'rootFolderID'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_titleDisplayHack', 'titleDisplayHack'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_showMissingTranslations', 'showMissingTranslations'); ?>
|
||||
|
||||
<!--
|
||||
-- SETTINGS - ADVANCED - AUTHENTICATION
|
||||
-->
|
||||
<tr ><td><b> <?php printMLText("settings_Authentication");?></b></td> </tr>
|
||||
<tr title="<?php printMLText("settings_guestID_desc");?>">
|
||||
<td><?php printMLText("settings_guestID");?>:</td>
|
||||
<td><?php $this->showTextField("guestID", $settings->_guestID); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_adminIP_desc");?>">
|
||||
<td><?php printMLText("settings_adminIP");?>:</td>
|
||||
<td><?php $this->showTextField("adminIP", $settings->_adminIP); ?></td>
|
||||
</tr>
|
||||
<?php $this->showConfigHeadline('settings_Authentication'); ?>
|
||||
<?php $this->showConfigText('settings_guestID', 'guestID'); ?>
|
||||
<?php $this->showConfigText('settings_adminIP', 'adminIP'); ?>
|
||||
|
||||
<!--
|
||||
-- SETTINGS - ADVANCED - EDITION
|
||||
-->
|
||||
<tr ><td><b> <?php printMLText("settings_Edition");?></b></td> </tr>
|
||||
<tr title="<?php printMLText("settings_workflowMode_desc");?>">
|
||||
<td><?php printMLText("settings_workflowMode");?>:</td>
|
||||
<td>
|
||||
<select name="workflowMode">
|
||||
<option value="traditional" <?php if ($settings->_workflowMode=='traditional') echo "selected" ?>><?php printMLText("settings_workflowMode_valtraditional");?></option>
|
||||
<option value="traditional_only_approval" <?php if ($settings->_workflowMode=='traditional_only_approval') echo "selected" ?>><?php printMLText("settings_workflowMode_valtraditional_only_approval");?></option>
|
||||
<option value="advanced" <?php if ($settings->_workflowMode=='advanced') echo "selected" ?>><?php printMLText("settings_workflowMode_valadvanced");?></option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableReceiptWorkflow_desc");?>">
|
||||
<td><?php printMLText("settings_enableReceiptWorkflow");?>:</td>
|
||||
<td><input name="enableReceiptWorkflow" type="checkbox" <?php if ($settings->_enableReceiptWorkflow) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableRevisionWorkflow_desc");?>">
|
||||
<td><?php printMLText("settings_enableRevisionWorkflow");?>:</td>
|
||||
<td><input name="enableRevisionWorkflow" type="checkbox" <?php if ($settings->_enableRevisionWorkflow) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableRevisionOnVoteReject_desc");?>">
|
||||
<td><?php printMLText("settings_enableRevisionOnVoteReject");?>:</td>
|
||||
<td><input name="enableRevisionOnVoteReject" type="checkbox" <?php if ($settings->_enableRevisionOnVoteReject) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_versioningFileName_desc");?>">
|
||||
<td><?php printMLText("settings_versioningFileName");?>:</td>
|
||||
<td><?php $this->showTextField("versioningFileName", $settings->_versioningFileName); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_presetExpirationDate_desc");?>">
|
||||
<td><?php printMLText("settings_presetExpirationDate");?>:</td>
|
||||
<td><?php $this->showTextField("presetExpirationDate", $settings->_presetExpirationDate); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_initialDocumentStatus_desc");?>">
|
||||
<td><?php printMLText("settings_initialDocumentStatus");?>:</td>
|
||||
<td>
|
||||
<select name="initialDocumentStatus" value="<?php echo $settings->_initialDocumentStatus; ?>" />
|
||||
<option value="<?php echo S_RELEASED; ?>" <?php if ($settings->_initialDocumentStatus==S_RELEASED) echo "selected" ?>><?php printMLText("settings_initialDocumentStatus_released");?></option>
|
||||
<option value="<?php echo S_DRAFT; ?>" <?php if ($settings->_initialDocumentStatus==S_DRAFT) echo "selected" ?>><?php printMLText("settings_initialDocumentStatus_draft");?></option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_allowReviewerOnly_desc");?>">
|
||||
<td><?php printMLText("settings_allowReviewerOnly");?>:</td>
|
||||
<td><input name="allowReviewerOnly" type="checkbox" <?php if ($settings->_allowReviewerOnly) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableAdminRevApp_desc");?>">
|
||||
<td><?php printMLText("settings_enableAdminRevApp");?>:</td>
|
||||
<td><input name="enableAdminRevApp" type="checkbox" <?php if ($settings->_enableAdminRevApp) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableOwnerRevApp_desc");?>">
|
||||
<td><?php printMLText("settings_enableOwnerRevApp");?>:</td>
|
||||
<td><input name="enableOwnerRevApp" type="checkbox" <?php if ($settings->_enableOwnerRevApp) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableSelfRevApp_desc");?>">
|
||||
<td><?php printMLText("settings_enableSelfRevApp");?>:</td>
|
||||
<td><input name="enableSelfRevApp" type="checkbox" <?php if ($settings->_enableSelfRevApp) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableUpdateRevApp_desc");?>">
|
||||
<td><?php printMLText("settings_enableUpdateRevApp");?>:</td>
|
||||
<td><input name="enableUpdateRevApp" type="checkbox" <?php if ($settings->_enableUpdateRevApp) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableSelfReceipt_desc");?>">
|
||||
<td><?php printMLText("settings_enableSelfReceipt");?>:</td>
|
||||
<td><input name="enableSelfReceipt" type="checkbox" <?php if ($settings->_enableSelfReceipt) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableAdminReceipt_desc");?>">
|
||||
<td><?php printMLText("settings_enableAdminReceipt");?>:</td>
|
||||
<td><input name="enableAdminReceipt" type="checkbox" <?php if ($settings->_enableAdminReceipt) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableOwnerReceipt_desc");?>">
|
||||
<td><?php printMLText("settings_enableOwnerReceipt");?>:</td>
|
||||
<td><input name="enableOwnerReceipt" type="checkbox" <?php if ($settings->_enableOwnerReceipt) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableUpdateReceipt_desc");?>">
|
||||
<td><?php printMLText("settings_enableUpdateReceipt");?>:</td>
|
||||
<td><input name="enableUpdateReceipt" type="checkbox" <?php if ($settings->_enableUpdateReceipt) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableFilterReceipt_desc");?>">
|
||||
<td><?php printMLText("settings_enableFilterReceipt");?>:</td>
|
||||
<td><input name="enableFilterReceipt" type="checkbox" <?php if ($settings->_enableFilterReceipt) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableVersionDeletion_desc");?>">
|
||||
<td><?php printMLText("settings_enableVersionDeletion");?>:</td>
|
||||
<td><input name="enableVersionDeletion" type="checkbox" <?php if ($settings->_enableVersionDeletion) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableVersionModification_desc");?>">
|
||||
<td><?php printMLText("settings_enableVersionModification");?>:</td>
|
||||
<td><input name="enableVersionModification" type="checkbox" <?php if ($settings->_enableVersionModification) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableDuplicateDocNames_desc");?>">
|
||||
<td><?php printMLText("settings_enableDuplicateDocNames");?>:</td>
|
||||
<td><input name="enableDuplicateDocNames" type="checkbox" <?php if ($settings->_enableDuplicateDocNames) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_overrideMimeType_desc");?>">
|
||||
<td><?php printMLText("settings_overrideMimeType");?>:</td>
|
||||
<td><input name="overrideMimeType" type="checkbox" <?php if ($settings->_overrideMimeType) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_advancedAcl_desc");?>">
|
||||
<td><?php printMLText("settings_advancedAcl");?>:</td>
|
||||
<td><input name="advancedAcl" type="checkbox" <?php if ($settings->_advancedAcl) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_removeFromDropFolder_desc");?>">
|
||||
<td><?php printMLText("settings_removeFromDropFolder");?>:</td>
|
||||
<td><input name="removeFromDropFolder" type="checkbox" <?php if ($settings->_removeFromDropFolder) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<?php $this->showConfigHeadline('settings_Edition'); ?>
|
||||
<?php $this->showConfigOption('settings_workflowMode', 'workflowMode', array('traditional'=>'settings_workflowMode_valtraditional', 'traditional_only_approval'=>'settings_workflowMode_valtraditional_only_approval', 'advanced'=>'settings_workflowMode_valadvanced'), false, true); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableReceiptWorkflow', 'enableReceiptWorkflow'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableRevisionWorkflow', 'enableRevisionWorkflow'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableRevisionOnVoteReject', 'enableRevisionOnVoteReject'); ?>
|
||||
<?php $this->showConfigText('settings_versioningFileName', 'versioningFileName'); ?>
|
||||
<?php $this->showConfigText('settings_presetExpirationDate', 'presetExpirationDate'); ?>
|
||||
<?php $this->showConfigOption('settings_initialDocumentStatus', 'initialDocumentStatus', array(' '.S_RELEASED=>'settings_initialDocumentStatus_released', ' '.S_DRAFT=>'settings_initialDocumentStatus_draft'), false, true); ?>
|
||||
<?php $this->showConfigCheckbox('settings_allowReviewerOnly', 'allowReviewerOnly'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableAdminRevApp', 'enableAdminRevApp'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableOwnerRevApp', 'enableOwnerRevApp'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableSelfRevApp', 'enableSelfRevApp'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableUpdateRevApp', 'enableUpdateRevApp'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableSelfReceipt', 'enableSelfReceipt'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableAdminReceipt', 'enableAdminReceipt'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableOwnerReceipt', 'enableOwnerReceipt'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableUpdateReceipt', 'enableUpdateReceipt'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableFilterReceipt', 'enableFilterReceipt'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableVersionDeletion', 'enableVersionDeletion'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableVersionModification', 'enableVersionModification'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableDuplicateDocNames', 'enableDuplicateDocNames'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_overrideMimeType', 'overrideMimeType'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_advancedAcl', 'advancedAcl'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_removeFromDropFolder', 'removeFromDropFolder'); ?>
|
||||
|
||||
<!--
|
||||
-- SETTINGS - ADVANCED - NOTIFICATION
|
||||
-->
|
||||
<tr ><td><b> <?php printMLText("settings_Notification");?></b></td> </tr>
|
||||
<tr title="<?php printMLText("settings_enableOwnerNotification_desc");?>">
|
||||
<td><?php printMLText("settings_enableOwnerNotification");?>:</td>
|
||||
<td><input name="enableOwnerNotification" type="checkbox" <?php if ($settings->_enableOwnerNotification) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableNotificationAppRev_desc");?>">
|
||||
<td><?php printMLText("settings_enableNotificationAppRev");?>:</td>
|
||||
<td><input name="enableNotificationAppRev" type="checkbox" <?php if ($settings->_enableNotificationAppRev) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_enableNotificationWorkflow_desc");?>">
|
||||
<td><?php printMLText("settings_enableNotificationWorkflow");?>:</td>
|
||||
<td><input name="enableNotificationWorkflow" type="checkbox" <?php if ($settings->_enableNotificationWorkflow) echo "checked" ?> /></td>
|
||||
</tr>
|
||||
<?php $this->showConfigHeadline('settings_Notification'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableOwnerNotification', 'enableOwnerNotification'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableNotificationAppRev', 'enableNotificationAppRev'); ?>
|
||||
<?php $this->showConfigCheckbox('settings_enableNotificationWorkflow', 'enableNotificationWorkflow'); ?>
|
||||
|
||||
<!--
|
||||
-- SETTINGS - ADVANCED - SERVER
|
||||
-->
|
||||
<tr ><td><b> <?php printMLText("settings_Server");?></b></td> </tr>
|
||||
<tr title="<?php printMLText("settings_coreDir_desc");?>">
|
||||
<td><?php printMLText("settings_coreDir");?>:</td>
|
||||
<td><?php $this->showTextField("coreDir", $settings->_coreDir); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_luceneClassDir_desc");?>">
|
||||
<td><?php printMLText("settings_luceneClassDir");?>:</td>
|
||||
<td><?php $this->showTextField("luceneClassDir", $settings->_luceneClassDir); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_extraPath_desc");?>">
|
||||
<td><?php printMLText("settings_extraPath");?>:</td>
|
||||
<td><?php $this->showTextField("extraPath", $settings->_extraPath); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_contentOffsetDir_desc");?>">
|
||||
<td><?php printMLText("settings_contentOffsetDir");?>:</td>
|
||||
<td><?php $this->showTextField("contentOffsetDir", $settings->_contentOffsetDir); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_maxDirID_desc");?>">
|
||||
<td><?php printMLText("settings_maxDirID");?>:</td>
|
||||
<td><?php $this->showTextField("maxDirID", $settings->_maxDirID); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_updateNotifyTime_desc");?>">
|
||||
<td><?php printMLText("settings_updateNotifyTime");?>:</td>
|
||||
<td><?php $this->showTextField("updateNotifyTime", $settings->_updateNotifyTime); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_maxExecutionTime_desc");?>">
|
||||
<td><?php printMLText("settings_maxExecutionTime");?>:</td>
|
||||
<td><?php $this->showTextField("maxExecutionTime", $settings->_maxExecutionTime); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_cmdTimeout_desc");?>">
|
||||
<td><?php printMLText("settings_cmdTimeout");?>:</td>
|
||||
<td><?php $this->showTextField("cmdTimeout", $settings->_cmdTimeout); ?></td>
|
||||
</tr>
|
||||
<?php $this->showConfigHeadline('settings_Server'); ?>
|
||||
<?php $this->showConfigText('settings_coreDir', 'coreDir'); ?>
|
||||
<?php $this->showConfigText('settings_luceneClassDir', 'luceneClassDir'); ?>
|
||||
<?php $this->showConfigText('settings_extraPath', 'extraPath'); ?>
|
||||
<?php $this->showConfigText('settings_contentOffsetDir', 'contentOffsetDir'); ?>
|
||||
<?php $this->showConfigText('settings_maxDirID', 'maxDirID'); ?>
|
||||
<?php $this->showConfigText('settings_updateNotifyTime', 'updateNotifyTime'); ?>
|
||||
<?php $this->showConfigText('settings_maxExecutionTime', 'maxExecutionTime'); ?>
|
||||
<?php $this->showConfigText('settings_cmdTimeout', 'cmdTimeout'); ?>
|
||||
|
||||
<?php
|
||||
foreach(array('fulltext', 'preview', 'pdf') as $target) {
|
||||
?>
|
||||
<tr><td><b><?php printMLText($target."_converters");?></b></td></tr>
|
||||
<?php
|
||||
$this->showConfigHeadline($target."_converters");
|
||||
if(!empty($settings->_converters[$target])) {
|
||||
foreach($settings->_converters[$target] as $mimetype=>$cmd) {
|
||||
?>
|
||||
|
@ -877,11 +458,9 @@ if(!is_writeable($settings->_configFilePath)) {
|
|||
-- SETTINGS - ADVANCED - DISPLAY
|
||||
-->
|
||||
<?php
|
||||
foreach($GLOBALS['EXT_CONF'] as $extname=>$extconf) {
|
||||
?>
|
||||
<tr><td><a name="<?php echo $extname;?>"></a><b><?php echo $extconf['title'];?></b></td></tr>
|
||||
<?php
|
||||
foreach($extconf['config'] as $confkey=>$conf) {
|
||||
foreach($GLOBALS['EXT_CONF'] as $extname=>$extconf) {
|
||||
$this->showRawConfigHeadline("<a name=\"".$extname."\"></a>".$extconf['title']);
|
||||
foreach($extconf['config'] as $confkey=>$conf) {
|
||||
?>
|
||||
<tr title="<?php echo isset($conf['help']) ? $conf['help'] : '';?>">
|
||||
<td><?php echo $conf['title'];?>:</td><td>
|
||||
|
|
Loading…
Reference in New Issue
Block a user