dolibarr 21.0.0-alpha
photos.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2001-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2004-2015 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2005 Eric Seigne <eric.seigne@ryxeo.com>
5 * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
6 * Copyright (C) 2014 Jean-François Ferry <jfefe@aternatik.fr>
7 * Copyright (C) 2015 Raphaël Doursenaud <rdoursenaud@gpcsolutions.fr>
8 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 3 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 */
23
30// Load Dolibarr environment
31require '../main.inc.php';
32require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';
33require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
34require_once DOL_DOCUMENT_ROOT.'/core/class/html.formother.class.php';
35require_once DOL_DOCUMENT_ROOT.'/core/lib/categories.lib.php';
36
37// Load translation files required by the page
38$langs->loadlangs(array('categories', 'bills'));
39
40
41$id = GETPOSTINT('id');
42$label = GETPOST('label', 'alpha');
43$action = GETPOST('action', 'aZ09');
44$confirm = GETPOST('confirm');
45
46if ($id == '' && $label == '') {
47 dol_print_error(null, 'Missing parameter id');
48 exit();
49}
50
51// Initialize a technical object to manage hooks. Note that conf->hooks_modules contains array array
52$hookmanager->initHooks(array('categorycard'));
53
54$object = new Categorie($db);
55$result = $object->fetch($id, $label);
56if ($result <= 0) {
57 dol_print_error($db, $object->error);
58 exit;
59}
60
61$type = $object->type;
62if (is_numeric($type)) {
63 $type = Categorie::$MAP_ID_TO_CODE[$type]; // For backward compatibility
64}
65
66$upload_dir = $conf->categorie->multidir_output[$object->entity];
67
68// Security check
69$result = restrictedArea($user, 'categorie', $id, '&category');
70
71$permissiontoadd = $user->hasRight('categorie', 'creer');
72
73
74/*
75 * Actions
76 */
77
78$parameters = array('id' => $id, 'label' => $label, 'confirm' => $confirm, 'type' => $type, 'uploaddir' => $upload_dir, 'sendfile' => (GETPOST("sendit") ? true : false));
79// Note that $action and $object may be modified by some hooks
80$reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action);
81if ($reshook < 0) {
82 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
83}
84
85if (empty($reshook)) {
86 if (isset($_FILES['userfile']) && $_FILES['userfile']['size'] > 0 && GETPOST("sendit") && getDolGlobalString('MAIN_UPLOAD_DOC')) {
87 if ($object->id) {
88 $file = $_FILES['userfile'];
89 if (is_array($file['name']) && count($file['name']) > 0) {
90 foreach ($file['name'] as $i => $name) {
91 if (empty($file['tmp_name'][$i]) || (getDolGlobalInt('MAIN_UPLOAD_DOC') * 1000) <= filesize($file['tmp_name'][$i])) {
92 setEventMessage($file['name'][$i].' : '.$langs->trans(empty($file['tmp_name'][$i]) ? 'ErrorFailedToSaveFile' : 'MaxSizeForUploadedFiles'), 'errors');
93 unset($file['name'][$i], $file['type'][$i], $file['tmp_name'][$i], $file['error'][$i], $file['size'][$i]);
94 }
95 }
96 }
97
98 if (!empty($file['tmp_name'])) {
99 $object->add_photo($upload_dir, $file);
100 }
101 }
102 }
103
104 if ($action == 'confirm_delete' && GETPOST("file") && $confirm == 'yes' && $permissiontoadd) {
105 $object->delete_photo($upload_dir."/".GETPOST("file"));
106 }
107
108 if ($action == 'addthumb' && GETPOST("file") && $permissiontoadd) {
109 $object->addThumbs($upload_dir."/".GETPOST("file"));
110 }
111}
112
113/*
114 * View
115 */
116
117llxHeader("", "", $langs->trans("Categories"));
118
119$form = new Form($db);
120$formother = new FormOther($db);
121
122if ($object->id) {
123 $title = Categorie::$MAP_TYPE_TITLE_AREA[$type];
124
125 $head = categories_prepare_head($object, $type);
126 print dol_get_fiche_head($head, 'photos', $langs->trans($title), -1, 'category');
127
128 $backtolist = (GETPOST('backtolist') ? GETPOST('backtolist') : DOL_URL_ROOT.'/categories/index.php?leftmenu=cat&type='.urlencode($type));
129 $linkback = '<a href="'.dol_sanitizeUrl($backtolist).'">'.$langs->trans("BackToList").'</a>';
130 $object->next_prev_filter = 'type = '.((int) $object->type);
131 $object->ref = $object->label;
132 $morehtmlref = '<br><div class="refidno"><a href="'.DOL_URL_ROOT.'/categories/index.php?leftmenu=cat&type='.$type.'">'.$langs->trans("Root").'</a> >> ';
133 $ways = $object->print_all_ways(" &gt;&gt; ", '', 1);
134 foreach ($ways as $way) {
135 $morehtmlref .= $way."<br>\n";
136 }
137 $morehtmlref .= '</div>';
138
139 dol_banner_tab($object, 'label', $linkback, ($user->socid ? 0 : 1), 'label', 'label', $morehtmlref, '&type='.$type, 0, '', '', 1);
140
141 /*
142 * Confirmation deletion of picture
143 */
144 if ($action == 'delete') {
145 print $form->formconfirm($_SERVER["PHP_SELF"].'?id='.$object->id.'&type='.urlencode($type).'&file='.urlencode(GETPOST("file")), $langs->trans('DeletePicture'), $langs->trans('ConfirmDeletePicture'), 'confirm_delete', '', 0, 1);
146 }
147
148 print '<br>';
149
150 print '<div class="fichecenter">';
151 print '<div class="underbanner clearboth"></div>';
152 print '<table class="border centpercent tableforfield">';
153
154 // Description
155 print '<tr><td class="titlefield notopnoleft">';
156 print $langs->trans("Description").'</td><td>';
157 print dol_htmlentitiesbr($object->description);
158 print '</td></tr>';
159
160 // Color
161 print '<tr><td class="notopnoleft">';
162 print $langs->trans("Color").'</td><td>';
163 print $formother->showColor($object->color);
164 print '</td></tr>';
165
166 print "</table>\n";
167 print '</div>';
168
169 print dol_get_fiche_end();
170
171
172
173 /*
174 * Action bar
175 */
176 print '<div class="tabsAction">'."\n";
177
178 if ($action != 'ajout_photo' && $user->hasRight('categorie', 'creer')) {
179 if (getDolGlobalString('MAIN_UPLOAD_DOC')) {
180 print '<a class="butAction hideonsmartphone" href="'.$_SERVER['PHP_SELF'].'?action=ajout_photo&amp;id='.$object->id.'&amp;type='.$type.'">';
181 print $langs->trans("AddPhoto").'</a>';
182 } else {
183 print '<a class="butActionRefused classfortooltip hideonsmartphone" href="#">';
184 print $langs->trans("AddPhoto").'</a>';
185 }
186 }
187
188 print '</div>'."\n";
189
190 /*
191 * Ajouter une photo
192 */
193 if ($action == 'ajout_photo' && $user->hasRight('categorie', 'creer') && getDolGlobalString('MAIN_UPLOAD_DOC')) {
194 // Affiche formulaire upload
195 $formfile = new FormFile($db);
196 $formfile->form_attach_new_file($_SERVER['PHP_SELF'].'?id='.$object->id.'&amp;type='.$type, $langs->trans("AddPhoto"), 1, '', $user->hasRight('categorie', 'creer'), 50, $object, '', false, '', 0);
197 }
198
199 // Affiche photos
200 if ($action != 'ajout_photo') {
201 $nbphoto = 0;
202 $nbbyrow = 5;
203
204 $maxWidth = 160;
205 $maxHeight = 120;
206
207 $pdir = get_exdir($object->id, 2, 0, 0, $object, 'category').$object->id."/photos/";
208 $dir = $upload_dir.'/'.$pdir;
209
210 $listofphoto = $object->liste_photos($dir);
211
212 if (is_array($listofphoto) && count($listofphoto)) {
213 print '<br>';
214 print '<table width="100%" valign="top" class="center centpercent">';
215
216 foreach ($listofphoto as $key => $obj) {
217 $nbphoto++;
218
219 if ($nbbyrow && ($nbphoto % $nbbyrow == 1)) {
220 print '<tr class"center valignmiddle" border="1">';
221 }
222 if ($nbbyrow) {
223 print '<td width="'.ceil(100 / $nbbyrow).'%" class="photo">';
224 }
225
226 print '<a href="'.DOL_URL_ROOT.'/viewimage.php?modulepart=category&entity='.$object->entity.'&file='.urlencode($pdir.$obj['photo']).'" alt="Original size" target="_blank" rel="noopener noreferrer">';
227
228 // Si fichier vignette disponible, on l'utilise, sinon on utilise photo origine
229 if ($obj['photo_vignette']) {
230 $filename = $obj['photo_vignette'];
231 } else {
232 $filename = $obj['photo'];
233 }
234
235 // Nom affiche
236 $viewfilename = $obj['photo'];
237
238 // Taille de l'image
239 $object->get_image_size($dir.$filename);
240 $imgWidth = ($object->imgWidth < $maxWidth) ? $object->imgWidth : $maxWidth;
241 $imgHeight = ($object->imgHeight < $maxHeight) ? $object->imgHeight : $maxHeight;
242
243 print '<img border="0" width="'.$imgWidth.'" height="'.$imgHeight.'" src="'.DOL_URL_ROOT.'/viewimage.php?modulepart=category&entity='.$object->entity.'&file='.urlencode($pdir.$filename).'">';
244
245 print '</a>';
246 print '<br>'.$viewfilename;
247 print '<br>';
248
249 // On propose la generation de la vignette si elle n'existe pas et si la taille est superieure aux limites
250 if (!$obj['photo_vignette'] && preg_match('/(\.bmp|\.gif|\.jpg|\.jpeg|\.png)$/i', $obj['photo']) && ($object->imgWidth > $maxWidth || $object->imgHeight > $maxHeight)) {
251 print '<a href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&token='.newToken().'&action=addthumb&type='.$type.'&file='.urlencode($pdir.$viewfilename).'">'.img_picto($langs->trans('GenerateThumb'), 'refresh').'&nbsp;&nbsp;</a>';
252 }
253 if ($user->hasRight('categorie', 'creer')) {
254 print '<a href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&action=delete&token='.newToken().'&type='.$type.'&file='.urlencode($pdir.$viewfilename).'">';
255 print img_delete().'</a>';
256 }
257 if ($nbbyrow) {
258 print '</td>';
259 }
260 if ($nbbyrow && ($nbphoto % $nbbyrow == 0)) {
261 print '</tr>';
262 }
263 }
264
265 // Ferme tableau
266 while ($nbphoto % $nbbyrow) {
267 print '<td width="'.ceil(100 / $nbbyrow).'%">&nbsp;</td>';
268 $nbphoto++;
269 }
270
271 print '</table>';
272 }
273
274 if ($nbphoto < 1) {
275 print '<div class="opacitymedium">'.$langs->trans("NoPhotoYet")."</div>";
276 }
277 }
278} else {
279 print $langs->trans("ErrorUnknown");
280}
281
282// End of page
283llxFooter();
284$db->close();
$id
Definition account.php:39
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:58
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Definition wrapper.php:70
categories_prepare_head(Categorie $object, $type)
Prepare array with list of tabs.
Class to manage categories.
Class to offer components to list and upload files.
Class to manage generation of HTML components Only common components must be here.
Class permettant la generation de composants html autre Only common components are here.
llxFooter()
Footer empty.
Definition document.php:107
img_delete($titlealt='default', $other='class="pictodelete"', $morecss='')
Show delete logo.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
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_get_fiche_end($notab=0)
Return tab footer of a card.
setEventMessage($mesgs, $style='mesgs', $noduplicate=0)
Set event message in dol_events session object.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
newToken()
Return the value of token currently saved into session with name 'newtoken'.
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_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_htmlentitiesbr($stringtoencode, $nl2brmode=0, $pagecodefrom='UTF-8', $removelasteolbr=1)
This function is called to encode a string into a HTML string but differs from htmlentities because a...
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
get_exdir($num, $level, $alpha, $withoutslash, $object, $modulepart='')
Return a path to have a the directory according to object where files are stored.
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.