Clean code
This commit is contained in:
parent
a0dda0ed77
commit
60c39933d4
@ -77,14 +77,14 @@ print '<input type="hidden" name="token" value="'.newToken().'">';
|
||||
|
||||
$head = dav_admin_prepare_head();
|
||||
|
||||
print dol_get_fiche_head($head, 'webdav', '', -1, 'action');
|
||||
print dol_get_fiche_head($head, 'webdav', '', -1, '');
|
||||
|
||||
if ($action == 'edit') {
|
||||
print '<form method="POST" action="'.$_SERVER["PHP_SELF"].'">';
|
||||
print '<input type="hidden" name="token" value="'.newToken().'">';
|
||||
print '<input type="hidden" name="action" value="update">';
|
||||
|
||||
print '<table class="noborder centpercent">';
|
||||
print '<table class="noborder centpercent nomarginbottom">';
|
||||
print '<tr class="liste_titre"><td>'.$langs->trans("Parameter").'</td><td>'.$langs->trans("Value").'</td></tr>';
|
||||
|
||||
foreach ($arrayofparameters as $key => $val) {
|
||||
@ -97,7 +97,7 @@ if ($action == 'edit') {
|
||||
$label = $langs->trans($key);
|
||||
if ($key == 'DAV_RESTICT_ON_IP') {
|
||||
$label = $langs->trans("RESTRICT_ON_IP");
|
||||
$label .= ' '.$langs->trans("Example").': '.$langs->trans("IPListExample");
|
||||
$tooltiphelp .= ' '.$langs->trans("Example").': '.$langs->trans("IPListExample");
|
||||
}
|
||||
print $form->textwithpicto($label, $tooltiphelp);
|
||||
print '</td><td>';
|
||||
@ -120,19 +120,19 @@ if ($action == 'edit') {
|
||||
print '</form>';
|
||||
print '<br>';
|
||||
} else {
|
||||
print '<table class="noborder centpercent">';
|
||||
print '<table class="noborder centpercent nomarginbottom">';
|
||||
print '<tr class="liste_titre"><td>'.$langs->trans("Parameter").'</td><td>'.$langs->trans("Value").'</td></tr>';
|
||||
|
||||
foreach ($arrayofparameters as $key => $val) {
|
||||
print '<tr class="oddeven"><td class="titlefieldmiddle">';
|
||||
print '<tr class="oddeven"><td>';
|
||||
$tooltiphelp = (($langs->trans($key.'Tooltip') != $key.'Tooltip') ? $langs->trans($key.'Tooltip') : '');
|
||||
$label = $langs->trans($key);
|
||||
if ($key == 'DAV_RESTICT_ON_IP') {
|
||||
$label = $langs->trans("RESTRICT_ON_IP");
|
||||
$label .= ' <span class="opacitymedium">'.$langs->trans("Example").': '.$langs->trans("IPListExample").'</span>';
|
||||
$tooltiphelp .= ' <span class="opacitymedium">'.$langs->trans("Example").': '.$langs->trans("IPListExample").'</span>';
|
||||
}
|
||||
print $form->textwithpicto($label, $tooltiphelp);
|
||||
print '</td><td>';
|
||||
print '</td><td class="minwidth200">';
|
||||
if ($key == 'DAV_ALLOW_PRIVATE_DIR') {
|
||||
print $langs->trans("AlwaysActive");
|
||||
} elseif ($key == 'DAV_ALLOW_PUBLIC_DIR' || $key == 'DAV_ALLOW_ECM_DIR') {
|
||||
|
||||
@ -375,7 +375,7 @@ if (! in_array($umask, array('600', '660', '0600', '0660'))) {
|
||||
}
|
||||
print $umask;
|
||||
if (! in_array($umask, array('600', '660', '0600', '0660'))) {
|
||||
print ' <span class="opacitymedium">('.$langs->trans("Recommended").': 0600 | 0660'.')</span>';
|
||||
print ' <span class="opacitymedium">('.$langs->trans("Recommended").': 0600 | 0660)</span>';
|
||||
}
|
||||
print '<br>';
|
||||
print '<br>';
|
||||
|
||||
@ -66,7 +66,6 @@ if (empty($conf->dav->enabled)) {
|
||||
accessforbidden();
|
||||
}
|
||||
|
||||
|
||||
// Restrict API to some IPs
|
||||
if (!empty($conf->global->DAV_RESTRICT_ON_IP)) {
|
||||
$allowedip = explode(' ', $conf->global->DAV_RESTRICT_ON_IP);
|
||||
@ -136,7 +135,7 @@ $authBackend = new \Sabre\DAV\Auth\Backend\BasicCallBack(function ($username, $p
|
||||
return true;
|
||||
});
|
||||
|
||||
$authBackend->setRealm(constant('DOL_APPLICATION_TITLE'));
|
||||
$authBackend->setRealm(constant('DOL_APPLICATION_TITLE').' - WebDAV');
|
||||
|
||||
|
||||
|
||||
@ -200,7 +199,7 @@ $lockBackend = new \Sabre\DAV\Locks\Backend\File($tmpDir.'/.locksdb');
|
||||
$lockPlugin = new \Sabre\DAV\Locks\Plugin($lockBackend);
|
||||
$server->addPlugin($lockPlugin);
|
||||
|
||||
// Support for html frontend
|
||||
// Support for the html browser
|
||||
if (empty($conf->global->DAV_DISABLE_BROWSER)) {
|
||||
$browser = new \Sabre\DAV\Browser\Plugin();
|
||||
$server->addPlugin($browser);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user