dolibarr  19.0.0-dev
dir_add_card.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2008-2017 Laurent Destailleur <eldy@users.sourceforge.net>
3  * Copyright (C) 2008-2012 Regis Houssin <regis.houssin@inodbox.com>
4  * Copyright (C) 2015-2016 Alexandre Spangaro <aspangaro@open-dsi.fr>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program. If not, see <https://www.gnu.org/licenses/>.
18  */
19 
26 if (! defined('DISABLE_JS_GRAHP')) define('DISABLE_JS_GRAPH', 1);
27 
28 // Load Dolibarr environment
29 require '../main.inc.php';
30 require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
31 require_once DOL_DOCUMENT_ROOT.'/ecm/class/htmlecm.form.class.php';
32 require_once DOL_DOCUMENT_ROOT.'/ecm/class/ecmdirectory.class.php';
33 
34 // Load translation files required by the page
35 $langs->loadLangs(array("ecm", "companies", "other", "users", "orders", "propal", "bills", "contracts", "categories"));
36 
37 // Get parameters
38 $socid = GETPOST('socid', 'int');
39 $action = GETPOST('action', 'alpha');
40 $cancel = GETPOST('cancel', 'aZ09');
41 $backtopage = GETPOST('backtopage', 'alpha');
42 $confirm = GETPOST('confirm', 'alpha');
43 
44 $module = GETPOST('module', 'alpha');
45 $website = GETPOST('website', 'alpha');
46 $pageid = GETPOST('pageid', 'int');
47 if (empty($module)) {
48  $module = 'ecm';
49 }
50 
51 // Security check
52 if ($user->socid > 0) {
53  $action = '';
54  $socid = $user->socid;
55 }
56 
57 $section = $urlsection = GETPOST('section', 'alpha');
58 if (empty($urlsection)) {
59  $urlsection = 'misc';
60 }
61 
62 if ($module == 'ecm') {
63  $upload_dir = $conf->ecm->dir_output.'/'.$urlsection;
64 } else // For example $module == 'medias'
65 {
66  $upload_dir = $conf->medias->multidir_output[$conf->entity];
67 }
68 
69 $limit = GETPOST('limit', 'int') ? GETPOST('limit', 'int') : $conf->liste_limit;
70 $sortfield = GETPOST('sortfield', 'aZ09comma');
71 $sortorder = GETPOST('sortorder', 'aZ09comma');
72 $page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
73 if (empty($page) || $page == -1) {
74  $page = 0;
75 } // If $page is not defined, or '' or -1
76 $offset = $limit * $page;
77 $pageprev = $page - 1;
78 $pagenext = $page + 1;
79 if (!$sortorder) {
80  $sortorder = "ASC";
81 }
82 if (!$sortfield) {
83  $sortfield = "label";
84 }
85 
86 $ecmdir = new EcmDirectory($db);
87 if (!empty($section)) {
88  $result = $ecmdir->fetch($section);
89  if (!($result > 0)) {
90  dol_print_error($db, $ecmdir->error);
91  exit;
92  }
93 }
94 
95 // Permissions
96 $permissiontoadd = 0;
97 $permissiontodelete = 0;
98 $permissiontoupload = 0;
99 if ($module == 'ecm') {
100  $permissiontoadd = $user->rights->ecm->setup;
101  $permissiontodelete = $user->rights->ecm->setup;
102  $permissiontoupload = $user->rights->ecm->upload;
103 }
104 if ($module == 'medias') {
105  $permissiontoadd = ($user->rights->mailing->creer || $user->rights->website->write);
106  $permissiontodelete = ($user->rights->mailing->creer || $user->rights->website->write);
107  $permissiontoupload = ($user->rights->mailing->creer || $user->rights->website->write);
108 }
109 
110 if (!$permissiontoadd) {
111  accessforbidden();
112 }
113 
114 
115 
116 /*
117  * Actions
118  */
119 
120 // Action ajout d'un produit ou service
121 if ($action == 'add' && $permissiontoadd) {
122  if ($cancel) {
123  if (!empty($backtopage)) {
124  header("Location: ".$backtopage);
125  exit;
126  } else {
127  header("Location: ".DOL_URL_ROOT.'/ecm/index.php?action=file_manager'.($module ? '&module='.$module : ''));
128  exit;
129  }
130  }
131 
132  $ref = (string) GETPOST("ref", 'alpha');
133  $label = dol_sanitizeFileName(GETPOST("label", 'alpha'));
134  $desc = (string) GETPOST("desc", 'alpha');
135  $catParent = GETPOST("catParent", 'alpha'); // Can be an int (with ECM) or a string (with generic filemanager)
136  if ($catParent == '-1') {
137  $catParent = 0;
138  }
139 
140  $error = 0;
141 
142  if (empty($label)) {
143  setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentities("Label")), null, 'errors');
144  $action = 'create';
145  $error++;
146  }
147 
148  if (!$error) {
149  if ($module == 'ecm') {
150  $ecmdir->ref = $ref;
151  $ecmdir->label = $label;
152  $ecmdir->description = $desc;
153  $ecmdir->fk_parent = (int) $catParent;
154 
155  $id = $ecmdir->create($user);
156  if ($id <= 0) {
157  $error++;
158  $langs->load("errors");
159  setEventMessages($ecmdir->error, $ecmdir->errors, 'errors');
160  $action = 'create';
161  }
162  } else { // For example $module == 'medias'
163  $dirfornewdir = '';
164  if ($module == 'medias') {
165  $dirfornewdir = $conf->medias->multidir_output[$conf->entity];
166  }
167  if (empty($dirfornewdir)) {
168  $error++;
169  dol_print_error('', 'Bad value for module. Not supported.');
170  }
171 
172  if (!$error) {
173  $fullpathofdir = $dirfornewdir.'/'.($catParent ? $catParent.'/' : '').$label;
174  $result = dol_mkdir($fullpathofdir, DOL_DATA_ROOT);
175  if ($result < 0) {
176  $langs->load("errors");
177  setEventMessages($langs->trans('ErrorFailToCreateDir', $label), null, 'errors');
178  $error++;
179  } else {
180  setEventMessages($langs->trans("ECMSectionWasCreated", $label), null, 'mesgs');
181  }
182  }
183  }
184  }
185 
186  if (!$error) {
187  if (!empty($backtopage)) {
188  header("Location: ".$backtopage);
189  exit;
190  } else {
191  header("Location: ".DOL_URL_ROOT.'/ecm/index.php?action=file_manager');
192  exit;
193  }
194  }
195 } elseif ($action == 'confirm_deletesection' && $confirm == 'yes' && $permissiontodelete) {
196  // Deleting file
197  $result = $ecmdir->delete($user);
198  setEventMessages($langs->trans("ECMSectionWasRemoved", $ecmdir->label), null, 'mesgs');
199 }
200 
201 
202 
203 
204 /*
205  * View
206  */
207 
208 llxHeader('', $langs->trans("ECMNewSection"));
209 
210 $form = new Form($db);
211 $formecm = new FormEcm($db);
212 
213 if ($action == 'create') {
214  //***********************
215  // Create
216  //***********************
217  print '<form action="'.$_SERVER["PHP_SELF"].'" method="POST">';
218  print '<input type="hidden" name="token" value="'.newToken().'">';
219  print '<input type="hidden" name="action" value="add">';
220  print '<input type="hidden" name="module" value="'.dol_escape_htmltag($module).'">';
221  print '<input type="hidden" name="backtopage" value="'.dol_escape_htmltag($backtopage).'">';
222  if ($website) {
223  print '<input type="hidden" name="website" value="'.dol_escape_htmltag($website).'">';
224  }
225  if ($pageid) {
226  print '<input type="hidden" name="pageid" value="'.dol_escape_htmltag($pageid).'">';
227  }
228 
229  $title = $langs->trans("ECMNewSection");
230  print load_fiche_titre($title);
231 
232  print dol_get_fiche_head();
233 
234  print '<table class="border centpercent">';
235 
236  // Label
237  print '<tr><td class="titlefieldcreate fieldrequired">'.$langs->trans("Label").'</td><td>';
238  print '<input name="label" class="minwidth100" maxlength="32" value="'.GETPOST("label", 'alpha').'" autofocus></td></tr>'."\n";
239 
240  print '<tr><td>'.$langs->trans("AddIn").'</td><td>';
241  print $formecm->selectAllSections((GETPOST("catParent", 'alpha') ? GETPOST("catParent", 'alpha') : $ecmdir->fk_parent), 'catParent', $module);
242  print '</td></tr>'."\n";
243 
244  // Description
245  if ($module == 'ecm') {
246  print '<tr><td class="tdtop">'.$langs->trans("Description").'</td><td>';
247  print '<textarea name="desc" rows="4" class="quatrevingtpercent">';
248  print $ecmdir->description;
249  print '</textarea>';
250  print '</td></tr>'."\n";
251  }
252 
253  print '</table>';
254 
255  print dol_get_fiche_end();
256 
257  print '<div class="center">';
258  print '<input type="submit" class="button" name="create" value="'.$langs->trans("Create").'">';
259  print ' &nbsp; &nbsp; ';
260  print '<input type="submit" class="button button-cancel" name="cancel" value="'.$langs->trans("Cancel").'">';
261  print '</div>';
262  print '</form>';
263 }
264 
265 
266 if (empty($action) || $action == 'delete_section') {
267  //***********************
268  // List
269  //***********************
270  print load_fiche_titre($langs->trans("ECMSectionOfDocuments"));
271  print '<br>';
272 
273  /*
274  $ecmdir->ref=$ecmdir->label;
275  print $langs->trans("ECMSection").': ';
276  print img_picto('','object_dir').' ';
277  print '<a href="'.DOL_URL_ROOT.'/ecm/dir_add_card.php">'.$langs->trans("ECMRoot").'</a>';
278  //print ' -> <b>'.$ecmdir->getNomUrl(1).'</b><br>';
279  print "<br><br>";
280  */
281 
282  // Confirmation de la suppression d'une ligne categorie
283  if ($action == 'delete_section') {
284  print $form->formconfirm($_SERVER["PHP_SELF"].'?section='.$section, $langs->trans('DeleteSection'), $langs->trans('ConfirmDeleteSection', $ecmdir->label), 'confirm_deletesection');
285  }
286 
287 
288  // Actions buttons
289  print '<div class="tabsAction">';
290 
291  // Delete
292  print dolGetButtonAction($langs->trans('Delete'), '', 'delete', $_SERVER["PHP_SELF"].'?id='.$object->id.'&action=delete&token='.newToken(), '', $user->rights->ecm->setup);
293 
294  print '</div>';
295 }
296 
297 
298 // End of page
299 llxFooter();
300 $db->close();
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
Definition: wrapper.php:56
llxFooter()
Empty footer.
Definition: wrapper.php:70
Class to manage ECM directories.
Class to manage HTML component for ECM and generic filemanager.
Class to manage generation of HTML components Only common components must be here.
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
Definition: card.php:143
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.
newToken()
Return the value of token currently saved into session with name 'newtoken'.
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.
GETPOSTISSET($paramname)
Return true if we are in a context of submitting the parameter $paramname from a POST of a form.
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.