dolibarr  16.0.5
document.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2003-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3  * Copyright (C) 2004-2016 Laurent Destailleur <eldy@users.sourceforge.net>
4  * Copyright (C) 2005 Marc Barilley / Ocebo <marc@ocebo.com>
5  * Copyright (C) 2005-2009 Regis Houssin <regis.houssin@inodbox.com>
6  * Copyright (C) 2005 Simon TOSSER <simon@kornog-computing.com>
7  * Copyright (C) 2011-2012 Juanjo Menent <jmenent@2byte.es>
8  * Copyright (C) 2013 Cédric Salvador <csalvador@gpcsolutions.fr>
9  * Copyright (C) 2015 Alexandre Spangaro <aspangaro@open-dsi.fr>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 3 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program. If not, see <https://www.gnu.org/licenses/>.
23  * or see https://www.gnu.org/
24  */
25 
32 require '../main.inc.php';
33 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
34 require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
35 require_once DOL_DOCUMENT_ROOT.'/core/lib/donation.lib.php';
36 require_once DOL_DOCUMENT_ROOT.'/don/class/don.class.php';
37 if (!empty($conf->project->enabled)) {
38  require_once DOL_DOCUMENT_ROOT.'/core/class/html.formprojet.class.php';
39  require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
40 }
41 
42 // Load translation files required by the page
43 $langs->loadLangs(array("companies", "other", "donations"));
44 
45 $id = GETPOST('id', 'int');
46 $ref = GETPOST('ref', 'alpha');
47 $action = GETPOST('action', 'aZ09');
48 $confirm = GETPOST('confirm', 'alpha');
49 $projectid = (GETPOST('projectid') ? GETPOST('projectid', 'int') : 0);
50 
51 // Security check
52 if ($user->socid) {
53  $socid = $user->socid;
54 }
55 $result = restrictedArea($user, 'don', $id, '');
56 
57 
58 // Get parameters
59 $limit = GETPOST('limit', 'int') ? GETPOST('limit', 'int') : $conf->liste_limit;
60 $sortfield = GETPOST('sortfield', 'aZ09comma');
61 $sortorder = GETPOST('sortorder', 'aZ09comma');
62 $page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
63 if (empty($page) || $page == -1) {
64  $page = 0;
65 } // If $page is not defined, or '' or -1
66 $offset = $limit * $page;
67 $pageprev = $page - 1;
68 $pagenext = $page + 1;
69 if (!$sortorder) {
70  $sortorder = "ASC";
71 }
72 if (!$sortfield) {
73  $sortfield = "name";
74 }
75 
76 
77 $object = new Don($db);
78 $object->fetch($id, $ref);
79 
80 if ($id > 0 || !empty($ref)) {
81  $upload_dir = $conf->don->multidir_output[$object->entity ? $object->entity : $conf->entity]."/".get_exdir(0, 0, 0, 1, $object);
82 }
83 
84 $modulepart = 'don';
85 
86 $permissiontoadd = $user->rights->don->creer; // Used by the include of actions_dellink.inc.php
87 
88 
89 /*
90  * Actions
91  */
92 
93 include DOL_DOCUMENT_ROOT.'/core/actions_linkedfiles.inc.php';
94 
95 if ($action == 'classin' && $user->rights->don->creer) {
96  $object->fetch($id);
97  $object->setProject($projectid);
98 }
99 
100 /*
101  * View
102  */
103 
104 $form = new Form($db);
105 if (!empty($conf->project->enabled)) {
106  $formproject = new FormProjets($db);
107 }
108 
109 $title = $langs->trans('Donation')." - ".$langs->trans('Documents');
110 
111 $help_url = 'EN:Module_Donations|FR:Module_Dons|ES:M&oacute;dulo_Donaciones|DE:Modul_Spenden';
112 
113 llxHeader('', $title, $help_url);
114 
115 
116 if ($object->id) {
117  $object->fetch_thirdparty();
118 
119  $head = donation_prepare_head($object);
120 
121  print dol_get_fiche_head($head, 'documents', $langs->trans("Donation"), -1, 'donation');
122 
123 
124  // Build file list
125  $filearray = dol_dir_list($upload_dir, "files", 0, '', '(\.meta|_preview.*\.png)$', $sortfield, (strtolower($sortorder) == 'desc' ?SORT_DESC:SORT_ASC), 1);
126  $totalsize = 0;
127  foreach ($filearray as $key => $file) {
128  $totalsize += $file['size'];
129  }
130 
131  $linkback = '<a href="'.DOL_URL_ROOT.'/don/list.php'.(!empty($socid) ? '?socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>';
132 
133  $morehtmlref = '<div class="refidno">';
134  // Project
135  if (!empty($conf->project->enabled)) {
136  $langs->load("projects");
137  $morehtmlref .= $langs->trans('Project').' ';
138  if ($user->rights->don->creer) {
139  if ($action != 'classify') {
140  // $morehtmlref.='<a class="editfielda" href="' . $_SERVER['PHP_SELF'] . '?action=classify&token='.newToken().'&id=' . $object->id . '">' . img_edit($langs->transnoentitiesnoconv('SetProject')) . '</a> : ';
141  }
142  if ($action == 'classify') {
143  //$morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'projectid', 0, 0, 1, 1);
144  $morehtmlref .= '<form method="post" action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'">';
145  $morehtmlref .= '<input type="hidden" name="action" value="classin">';
146  $morehtmlref .= '<input type="hidden" name="token" value="'.newToken().'">';
147  $morehtmlref .= $formproject->select_projects($object->socid, $object->fk_project, 'projectid', $maxlength, 0, 1, 0, 1, 0, 0, '', 1);
148  $morehtmlref .= '<input type="submit" class="button valignmiddle" value="'.$langs->trans("Modify").'">';
149  $morehtmlref .= '</form>';
150  } else {
151  $morehtmlref .= $form->form_project($_SERVER['PHP_SELF'].'?id='.$object->id, $object->socid, $object->fk_project, 'none', 0, 0, 0, 1);
152  }
153  } else {
154  if (!empty($object->fk_project)) {
155  $proj = new Project($db);
156  $proj->fetch($object->fk_project);
157  $morehtmlref .= ' : '.$proj->getNomUrl(1);
158  if ($proj->title) {
159  $morehtmlref .= ' - '.$proj->title;
160  }
161  } else {
162  $morehtmlref .= '';
163  }
164  }
165  }
166  $morehtmlref .= '</div>';
167 
168 
169  dol_banner_tab($object, 'rowid', $linkback, 1, 'rowid', 'ref', $morehtmlref);
170 
171  print '<div class="fichecenter">';
172  print '<div class="underbanner clearboth"></div>';
173 
174  print '<table class="border tableforfield centpercent">';
175 
176  // Ref
177  /*
178  print '<tr><td class="titlefield">'.$langs->trans("Ref").'</td><td>';
179  print $form->showrefnav($object, 'id', $linkback, 1, 'rowid', 'ref', '');
180  print '</td></tr>';
181  */
182 
183  // Societe
184  //print "<tr><td>".$langs->trans("Company")."</td><td>".$object->client->getNomUrl(1)."</td></tr>";
185 
186  print '<tr><td class="titlefield">'.$langs->trans("NbOfAttachedFiles").'</td><td colspan="3">'.count($filearray).'</td></tr>';
187  print '<tr><td>'.$langs->trans("TotalSizeOfAttachedFiles").'</td><td colspan="3">'.dol_print_size($totalsize, 1, 1).'</td></tr>';
188  print '</table>';
189 
190  print '</div>';
191 
192  print '<div class="clearboth"></div>';
193 
194  print dol_get_fiche_end();
195 
196  $modulepart = 'don';
197  $permissiontoadd = $user->rights->don->creer;
198  $permtoedit = $user->rights->don->creer;
199  $param = '&id='.$object->id;
200  include DOL_DOCUMENT_ROOT.'/core/tpl/document_actions_post_headers.tpl.php';
201 } else {
202  print $langs->trans("ErrorUnknown");
203 }
204 
205 llxFooter();
206 
207 $db->close();
restrictedArea
restrictedArea($user, $features, $objectid=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.
Definition: security.lib.php:234
Project
Class to manage projects.
Definition: project.class.php:35
GETPOST
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
Definition: functions.lib.php:484
llxFooter
llxFooter()
Footer empty.
Definition: document.php:89
FormProjets
Class to manage building of HTML components.
Definition: html.formprojet.class.php:30
donation_prepare_head
donation_prepare_head($object)
Prepare array with list of tabs.
Definition: donation.lib.php:63
$form
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
Definition: card.php:142
Don
Class to manage donations.
Definition: don.class.php:38
dol_dir_list
dol_dir_list($path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0)
Scan a directory and return a list of files/directories.
Definition: files.lib.php:60
dol_banner_tab
dol_banner_tab($object, $paramid, $morehtml='', $shownav=1, $fieldid='rowid', $fieldref='ref', $morehtmlref='', $moreparam='', $nodbprefix=0, $morehtmlleft='', $morehtmlstatus='', $onlybanner=0, $morehtmlright='')
Show tab footer of a card.
Definition: functions.lib.php:2046
$help_url
if(GETPOST('button_removefilter_x', 'alpha')||GETPOST('button_removefilter.x', 'alpha')||GETPOST('button_removefilter', 'alpha')) if(GETPOST('button_search_x', 'alpha')||GETPOST('button_search.x', 'alpha')||GETPOST('button_search', 'alpha')) if($action=="save" &&empty($cancel)) $help_url
View.
Definition: agenda.php:116
llxHeader
if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) if(isset($_GET["hashp"]) &&!defined("NOLOGIN")) if((isset($_GET["modulepart"]) && $_GET["modulepart"]=='medias')) llxHeader()
Header empty.
Definition: document.php:80
get_exdir
get_exdir($num, $level, $alpha, $withoutslash, $object, $modulepart='')
Return a path to have a the directory according to object where files are stored.
Definition: functions.lib.php:6549
dol_print_size
dol_print_size($size, $shortvalue=0, $shortunit=0)
Return string with formated size.
Definition: functions.lib.php:2884
dol_get_fiche_head
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='')
Show tabs of a record.
Definition: functions.lib.php:1822
dol_get_fiche_end
dol_get_fiche_end($notab=0)
Return tab footer of a card.
Definition: functions.lib.php:2018
GETPOSTISSET
GETPOSTISSET($paramname)
Return true if we are in a context of submitting the parameter $paramname from a POST of a form.
Definition: functions.lib.php:386
Form
Class to manage generation of HTML components Only common components must be here.
Definition: html.form.class.php:52