26if (! defined(
'DISABLE_JS_GRAHP')) {
27 define(
'DISABLE_JS_GRAPH', 1);
31require
'../main.inc.php';
32require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formfile.class.php';
33require_once DOL_DOCUMENT_ROOT.
'/ecm/class/htmlecm.form.class.php';
34require_once DOL_DOCUMENT_ROOT.
'/ecm/class/ecmdirectory.class.php';
37$langs->loadLangs(array(
"ecm",
"companies",
"other",
"users",
"orders",
"propal",
"bills",
"contracts",
"categories"));
40$socid =
GETPOST(
'socid',
'int');
41$action =
GETPOST(
'action',
'alpha');
42$cancel =
GETPOST(
'cancel',
'aZ09');
43$backtopage =
GETPOST(
'backtopage',
'alpha');
44$confirm =
GETPOST(
'confirm',
'alpha');
46$module =
GETPOST(
'module',
'alpha');
47$website =
GETPOST(
'website',
'alpha');
48$pageid =
GETPOST(
'pageid',
'int');
54if ($user->socid > 0) {
56 $socid = $user->socid;
59$section = $urlsection =
GETPOST(
'section',
'alpha');
60if (empty($urlsection)) {
64if ($module ==
'ecm') {
65 $upload_dir = $conf->ecm->dir_output.
'/'.$urlsection;
67 $upload_dir = $conf->medias->multidir_output[$conf->entity];
70$limit =
GETPOST(
'limit',
'int') ?
GETPOST(
'limit',
'int') : $conf->liste_limit;
71$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
72$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
73$page = GETPOSTISSET(
'pageplusone') ? (
GETPOST(
'pageplusone') - 1) :
GETPOST(
"page",
'int');
74if (empty($page) || $page == -1) {
77$offset = $limit * $page;
88if (!empty($section)) {
89 $result = $ecmdir->fetch($section);
98$permissiontodelete = 0;
99$permissiontoupload = 0;
100if ($module ==
'ecm') {
101 $permissiontoadd = $user->rights->ecm->setup;
102 $permissiontodelete = $user->rights->ecm->setup;
103 $permissiontoupload = $user->rights->ecm->upload;
105if ($module ==
'medias') {
106 $permissiontoadd = ($user->rights->mailing->creer || $user->rights->website->write);
107 $permissiontodelete = ($user->rights->mailing->creer || $user->rights->website->write);
108 $permissiontoupload = ($user->rights->mailing->creer || $user->rights->website->write);
111if (!$permissiontoadd) {
122if ($action ==
'add' && $permissiontoadd) {
124 if (!empty($backtopage)) {
125 header(
"Location: ".$backtopage);
128 header(
"Location: ".DOL_URL_ROOT.
'/ecm/index.php?action=file_manager'.($module ?
'&module='.$module :
''));
133 $ref = (string)
GETPOST(
"ref",
'alpha');
135 $desc = (string)
GETPOST(
"desc",
'alpha');
136 $catParent =
GETPOST(
"catParent",
'alpha');
137 if ($catParent ==
'-1') {
144 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentities(
"Label")),
null,
'errors');
150 if ($module ==
'ecm') {
152 $ecmdir->label = $label;
153 $ecmdir->description = $desc;
154 $ecmdir->fk_parent = (int) $catParent;
156 $id = $ecmdir->create($user);
159 $langs->load(
"errors");
165 if ($module ==
'medias') {
166 $dirfornewdir = $conf->medias->multidir_output[$conf->entity];
168 if (empty($dirfornewdir)) {
174 $fullpathofdir = $dirfornewdir.
'/'.($catParent ? $catParent.
'/' :
'').$label;
175 $result =
dol_mkdir($fullpathofdir, DOL_DATA_ROOT);
177 $langs->load(
"errors");
178 setEventMessages($langs->trans(
'ErrorFailToCreateDir', $label),
null,
'errors');
181 setEventMessages($langs->trans(
"ECMSectionWasCreated", $label),
null,
'mesgs');
188 if (!empty($backtopage)) {
189 header(
"Location: ".$backtopage);
192 header(
"Location: ".DOL_URL_ROOT.
'/ecm/index.php?action=file_manager');
196} elseif ($action ==
'confirm_deletesection' && $confirm ==
'yes' && $permissiontodelete) {
198 $result = $ecmdir->delete($user);
199 setEventMessages($langs->trans(
"ECMSectionWasRemoved", $ecmdir->label),
null,
'mesgs');
209llxHeader(
'', $langs->trans(
"ECMNewSection"));
211$form =
new Form($db);
214if ($action ==
'create') {
218 print
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="POST">';
219 print
'<input type="hidden" name="token" value="'.newToken().
'">';
220 print
'<input type="hidden" name="action" value="add">';
221 print
'<input type="hidden" name="module" value="'.dol_escape_htmltag($module).
'">';
222 print
'<input type="hidden" name="backtopage" value="'.dol_escape_htmltag($backtopage).
'">';
224 print
'<input type="hidden" name="website" value="'.dol_escape_htmltag($website).
'">';
227 print
'<input type="hidden" name="pageid" value="'.dol_escape_htmltag($pageid).
'">';
230 $title = $langs->trans(
"ECMNewSection");
235 print
'<table class="border centpercent">';
238 print
'<tr><td class="titlefieldcreate fieldrequired">'.$langs->trans(
"Label").
'</td><td>';
239 print
'<input name="label" class="minwidth100" maxlength="32" value="'.GETPOST(
"label",
'alpha').
'" autofocus></td></tr>'.
"\n";
241 print
'<tr><td>'.$langs->trans(
"AddIn").
'</td><td>';
242 print $formecm->selectAllSections((
GETPOST(
"catParent",
'alpha') ?
GETPOST(
"catParent",
'alpha') : $ecmdir->fk_parent),
'catParent', $module);
243 print
'</td></tr>'.
"\n";
246 if ($module ==
'ecm') {
247 print
'<tr><td class="tdtop">'.$langs->trans(
"Description").
'</td><td>';
248 print
'<textarea name="desc" rows="4" class="quatrevingtpercent">';
249 print $ecmdir->description;
251 print
'</td></tr>'.
"\n";
258 print
'<div class="center">';
259 print
'<input type="submit" class="button" name="create" value="'.$langs->trans(
"Create").
'">';
260 print
' ';
261 print
'<input type="submit" class="button button-cancel" name="cancel" value="'.$langs->trans(
"Cancel").
'">';
267if (empty($action) || $action ==
'delete_section') {
284 if ($action ==
'delete_section') {
285 print $form->formconfirm($_SERVER[
"PHP_SELF"].
'?section='.$section, $langs->trans(
'DeleteSection'), $langs->trans(
'ConfirmDeleteSection', $ecmdir->label),
'confirm_deletesection');
290 print
'<div class="tabsAction">';
293 print
dolGetButtonAction($langs->trans(
'Delete'),
'',
'delete', $_SERVER[
"PHP_SELF"].
'?id='.$object->id.
'&action=delete&token='.newToken(),
'', $user->hasRight(
'ecm',
'setup'));
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Class to manage ECM directories.
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='', $dragdropfile=0)
Show tabs of a record.
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_get_fiche_end($notab=0)
Return tab footer of a card.
dolGetButtonAction($label, $text='', $actionType='default', $url='', $id='', $userRight=1, $params=array())
Function dolGetButtonAction.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
dol_mkdir($dir, $dataroot='', $newmask='')
Creation of a directory (this can create recursive subdir)
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.