27 require
'../main.inc.php';
28 require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
29 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
30 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formfile.class.php';
33 $langs->loadLangs(array(
'users',
'admin',
'other'));
39 $action =
GETPOST(
'action',
'aZ09');
40 $sortfield =
GETPOST(
'sortfield',
'aZ09');
41 $sortorder =
GETPOST(
'sortorder',
'aZ09');
42 if (empty($sortfield)) {
45 if (empty($sortorder)) {
49 $upload_dir = $conf->admin->dir_temp;
56 if (
GETPOST(
'sendit') && !empty($conf->global->MAIN_UPLOAD_DOC)) {
57 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
62 if ($action ==
'updateform') {
63 $antivircommand =
GETPOST(
'MAIN_ANTIVIRUS_COMMAND',
'restricthtml');
64 $antivirparam =
GETPOST(
'MAIN_ANTIVIRUS_PARAM',
'restricthtml');
70 $res5 =
dolibarr_set_const($db,
"MAIN_ANTIVIRUS_COMMAND", trim($antivircommand),
'chaine', 0,
'', $conf->entity);
71 $res6 =
dolibarr_set_const($db,
"MAIN_ANTIVIRUS_PARAM", trim($antivirparam),
'chaine', 0,
'', $conf->entity);
72 if ($res3 && $res4 && $res5 && $res6) {
73 setEventMessages($langs->trans(
"RecordModifiedSuccessfully"),
null,
'mesgs');
75 } elseif ($action ==
'deletefile') {
77 $langs->load(
"other");
78 $file = $conf->admin->dir_temp.
'/'.
GETPOST(
'urlfile',
'alpha');
94 $wikihelp =
'EN:Setup_Security|FR:Paramétrage_Sécurité|ES:Configuración_Seguridad';
99 print
'<span class="opacitymedium">'.$langs->trans(
"SecurityFilesDesc").
"</span><br>\n";
103 print
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="POST">';
104 print
'<input type="hidden" name="token" value="'.newToken().
'">';
105 print
'<input type="hidden" name="action" value="updateform">';
115 print
'<div class="div-table-responsive-no-min">';
116 print
'<table class="noborder centpercent nomarginbottom">';
117 print
'<tr class="liste_titre">';
118 print
'<td>'.$langs->trans(
"Parameters").
'</td>';
119 print
'<td>'.$langs->trans(
"Value").
'</td>';
122 print
'<tr class="oddeven">';
123 print
'<td>'.$langs->trans(
"MaxSizeForUploadedFiles").
'.';
124 $max = @ini_get(
'upload_max_filesize');
126 print
'<br><span class="opacitymedium">'.$langs->trans(
"MustBeLowerThanPHPLimit", ((
int) $max) * 1024, $langs->trans(
"Kb")).
'.</span>';
128 print
' '.$langs->trans(
"NoMaxSizeByPHPLimit").
'.';
131 print
'<td class="nowrap">';
132 print
'<input class="flat" name="MAIN_UPLOAD_DOC" type="text" size="6" value="'.dol_escape_htmltag($conf->global->MAIN_UPLOAD_DOC).
'"> '.$langs->trans(
"Kb");
137 print
'<tr class="oddeven">';
139 print
$form->textwithpicto($langs->trans(
"UMask"), $langs->trans(
"UMaskExplanation"));
141 print
'<td class="nowrap">';
142 print
'<input class="flat" name="MAIN_UMASK" type="text" size="6" value="'.dol_escape_htmltag($conf->global->MAIN_UMASK).
'">';
148 print
'<tr class="oddeven">';
149 print
'<td>'.$langs->trans(
"AntiVirusCommand").
'<br>';
150 print
'<span class="opacitymedium">'.$langs->trans(
"AntiVirusCommandExample").
'</span>';
154 if (ini_get(
'safe_mode') && !empty($conf->global->MAIN_ANTIVIRUS_COMMAND)) {
155 $langs->load(
"errors");
156 $basedir = preg_replace(
'/"/',
'', dirname($conf->global->MAIN_ANTIVIRUS_COMMAND));
157 $listdir = explode(
';', ini_get(
'safe_mode_exec_dir'));
158 if (!in_array($basedir, $listdir)) {
159 print
img_warning($langs->trans(
'WarningSafeModeOnCheckExecDir'));
160 dol_syslog(
"safe_mode is on, basedir is ".$basedir.
", safe_mode_exec_dir is ".ini_get(
'safe_mode_exec_dir'), LOG_WARNING);
163 print
'<input type="text" '.((defined(
'MAIN_ANTIVIRUS_COMMAND') && !defined(
'MAIN_ANTIVIRUS_BYPASS_COMMAND_AND_PARAM')) ?
'disabled ' :
'').
'name="MAIN_ANTIVIRUS_COMMAND" class="minwidth500imp" value="'.(!empty($conf->global->MAIN_ANTIVIRUS_COMMAND) ?
dol_escape_htmltag($conf->global->MAIN_ANTIVIRUS_COMMAND) :
'').
'">';
164 if (defined(
'MAIN_ANTIVIRUS_COMMAND') && !defined(
'MAIN_ANTIVIRUS_BYPASS_COMMAND_AND_PARAM')) {
165 print
'<br><span class="opacitymedium">'.$langs->trans(
"ValueIsForcedBySystem").
'</span>';
172 print
'<tr class="oddeven">';
173 print
'<td>'.$langs->trans(
"AntiVirusParam").
'<br>';
174 print
'<span class="opacitymedium">'.$langs->trans(
"AntiVirusParamExample").
'</span>';
177 print
'<input type="text" '.(defined(
'MAIN_ANTIVIRUS_PARAM') ?
'disabled ' :
'').
'name="MAIN_ANTIVIRUS_PARAM" class="minwidth500imp" value="'.(!empty($conf->global->MAIN_ANTIVIRUS_PARAM) ?
dol_escape_htmltag($conf->global->MAIN_ANTIVIRUS_PARAM) :
'').
'">';
178 if (defined(
'MAIN_ANTIVIRUS_PARAM')) {
179 print
'<br><span class="opacitymedium">'.$langs->trans(
"ValueIsForcedBySystem").
'</span>';
189 print
$form->buttonsSaveCancel(
"Modify",
'');
197 $formfile->form_attach_new_file($_SERVER[
'PHP_SELF'], $langs->trans(
"FormToTestFileUploadForm"), 0, 0, 1, 50,
'',
'', 1,
'', 0);
200 $filearray =
dol_dir_list($upload_dir,
"files", 0,
'',
'', $sortfield, $sortorder ==
'desc' ? SORT_DESC : SORT_ASC, 1);
201 if (count($filearray) > 0) {
202 $formfile->list_of_documents($filearray,
null,
'admin_temp',
'');
security_prepare_head()
Prepare array with list of tabs.
dolibarr_set_const($db, $name, $value, $type='chaine', $visible=0, $note='', $entity=1)
Insert a parameter (key,value) into database (delete old key then insert it again).
if($actionsave) if(!isset($conf->global->MAIN_AGENDA_EXPORT_PAST_DELAY)) $wikihelp
View.
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
dol_delete_file($file, $disableglob=0, $nophperrors=0, $nohook=0, $object=null, $allowdotdot=false, $indexdatabase=1, $nolog=0)
Remove a file or several files with a mask.
dol_dir_list($path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0, $nbsecondsold=0)
Scan a directory and return a list of files/directories.
dol_add_file_process($upload_dir, $allowoverwrite=0, $donotupdatesession=0, $varfiles='addedfile', $savingdocmask='', $link=null, $trackid='', $generatethumbs=1, $object=null)
Get and save an upload file (for example after submitting a new file a mail form).
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='')
Show tabs of a record.
img_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0)
Returns text escaped for inclusion in HTML alt or title tags, or into values of HTML input fields.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='')
Set event messages in dol_events session object.
dol_string_nospecial($str, $newstr='_', $badcharstoreplace='', $badcharstoremove='')
Clean a string from all punctuation characters to use it as a ref or login.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.