dolibarr 21.0.0-alpha
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// Load Dolibarr environment
33require '../main.inc.php';
34require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
35require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
36require_once DOL_DOCUMENT_ROOT.'/core/lib/donation.lib.php';
37require_once DOL_DOCUMENT_ROOT.'/don/class/don.class.php';
38if (isModEnabled('project')) {
39 require_once DOL_DOCUMENT_ROOT.'/core/class/html.formprojet.class.php';
40 require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
41}
42
43// Load translation files required by the page
44$langs->loadLangs(array('companies', 'other', 'donations'));
45
46$id = GETPOSTINT('id');
47$ref = GETPOST('ref', 'alpha');
48$action = GETPOST('action', 'aZ09');
49$confirm = GETPOST('confirm', 'alpha');
50$projectid = (GETPOST('projectid') ? GETPOSTINT('projectid') : 0);
51
52// Get parameters
53$limit = GETPOSTINT('limit') ? GETPOSTINT('limit') : $conf->liste_limit;
54$sortfield = GETPOST('sortfield', 'aZ09comma');
55$sortorder = GETPOST('sortorder', 'aZ09comma');
56$page = GETPOSTISSET('pageplusone') ? (GETPOSTINT('pageplusone') - 1) : GETPOSTINT("page");
57if (empty($page) || $page == -1) {
58 $page = 0;
59} // If $page is not defined, or '' or -1
60$offset = $limit * $page;
61$pageprev = $page - 1;
62$pagenext = $page + 1;
63if (!$sortorder) {
64 $sortorder = "ASC";
65}
66if (!$sortfield) {
67 $sortfield = "name";
68}
69
70$object = new Don($db);
71if ($id > 0 || !empty($ref)) {
72 $object->fetch($id, $ref);
73}
74
75if ($id > 0 || !empty($ref)) {
76 $upload_dir = $conf->don->multidir_output[$object->entity ? $object->entity : $conf->entity]."/".get_exdir(0, 0, 0, 1, $object);
77}
78
79$modulepart = 'don';
80
81// Security check
82if ($user->socid) {
83 $socid = $user->socid;
84}
85$result = restrictedArea($user, 'don', $object->id);
86
87$permissiontoadd = $user->hasRight('don', 'creer'); // Used by the include of actions_dellink.inc.php
88
89
90/*
91 * Actions
92 */
93
94include DOL_DOCUMENT_ROOT.'/core/actions_linkedfiles.inc.php';
95
96if ($action == 'classin' && $user->hasRight('don', 'creer')) {
97 $object->fetch($id);
98 $object->setProject($projectid);
99}
100
101/*
102 * View
103 */
104
105$form = new Form($db);
106if (isModEnabled('project')) {
107 $formproject = new FormProjets($db);
108}
109
110$title = $langs->trans('Donation')." - ".$langs->trans('Documents');
111
112$help_url = 'EN:Module_Donations|FR:Module_Dons|ES:M&oacute;dulo_Donaciones|DE:Modul_Spenden';
113
114llxHeader('', $title, $help_url, '', 0, 0, '', '', '', 'mod-donation page-card_documents');
115
116
117if ($object->id) {
118 $object->fetch_thirdparty();
119
120 $head = donation_prepare_head($object);
121
122 print dol_get_fiche_head($head, 'documents', $langs->trans("Donation"), -1, 'donation');
123
124
125 // Build file list
126 $filearray = dol_dir_list($upload_dir, "files", 0, '', '(\.meta|_preview.*\.png)$', $sortfield, (strtolower($sortorder) == 'desc' ? SORT_DESC : SORT_ASC), 1);
127 $totalsize = 0;
128 foreach ($filearray as $key => $file) {
129 $totalsize += $file['size'];
130 }
131
132 $linkback = '<a href="'.DOL_URL_ROOT.'/don/list.php'.(!empty($socid) ? '?socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>';
133
134 $morehtmlref = '<div class="refidno">';
135 // Project
136 if (isModEnabled('project')) {
137 $langs->load("projects");
138 $morehtmlref .= $langs->trans('Project').' ';
139 if ($user->hasRight('don', 'creer')) {
140 if ($action != 'classify') {
141 // $morehtmlref.='<a class="editfielda" href="' . $_SERVER['PHP_SELF'] . '?action=classify&token='.newToken().'&id=' . $object->id . '">' . img_edit($langs->transnoentitiesnoconv('SetProject')) . '</a> : ';
142 }
143 if ($action == 'classify') {
144 //$morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'projectid', 0, 0, 1, 1);
145 $morehtmlref .= '<form method="post" action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'">';
146 $morehtmlref .= '<input type="hidden" name="action" value="classin">';
147 $morehtmlref .= '<input type="hidden" name="token" value="'.newToken().'">';
148 $morehtmlref .= $formproject->select_projects($object->socid, $object->fk_project, 'projectid', $maxlength, 0, 1, 0, 1, 0, 0, '', 1);
149 $morehtmlref .= '<input type="submit" class="button valignmiddle" value="'.$langs->trans("Modify").'">';
150 $morehtmlref .= '</form>';
151 } else {
152 $morehtmlref .= $form->form_project($_SERVER['PHP_SELF'].'?id='.$object->id, $object->socid, $object->fk_project, 'none', 0, 0, 0, 1, '', 'maxwidth300');
153 }
154 } else {
155 if (!empty($object->fk_project)) {
156 $proj = new Project($db);
157 $proj->fetch($object->fk_project);
158 $morehtmlref .= ' : '.$proj->getNomUrl(1);
159 if ($proj->title) {
160 $morehtmlref .= ' - '.$proj->title;
161 }
162 } else {
163 $morehtmlref .= '';
164 }
165 }
166 }
167 $morehtmlref .= '</div>';
168
169
170 dol_banner_tab($object, 'rowid', $linkback, 1, 'rowid', 'ref', $morehtmlref);
171
172 print '<div class="fichecenter">';
173 print '<div class="underbanner clearboth"></div>';
174
175 print '<table class="border tableforfield centpercent">';
176
177 // Ref
178 /*
179 print '<tr><td class="titlefield">'.$langs->trans("Ref").'</td><td>';
180 print $form->showrefnav($object, 'id', $linkback, 1, 'rowid', 'ref', '');
181 print '</td></tr>';
182 */
183
184 // Societe
185 //print "<tr><td>".$langs->trans("Company")."</td><td>".$object->client->getNomUrl(1)."</td></tr>";
186
187 print '<tr><td class="titlefield">'.$langs->trans("NbOfAttachedFiles").'</td><td colspan="3">'.count($filearray).'</td></tr>';
188 print '<tr><td>'.$langs->trans("TotalSizeOfAttachedFiles").'</td><td colspan="3">'.dol_print_size($totalsize, 1, 1).'</td></tr>';
189 print '</table>';
190
191 print '</div>';
192
193 print '<div class="clearboth"></div>';
194
195 print dol_get_fiche_end();
196
197 $modulepart = 'don';
198 $permissiontoadd = $user->hasRight('don', 'creer');
199 $permtoedit = $user->hasRight('don', 'creer');
200 $param = '&id='.$object->id;
201 include DOL_DOCUMENT_ROOT.'/core/tpl/document_actions_post_headers.tpl.php';
202} else {
203 print $langs->trans("ErrorUnknown");
204}
205
206llxFooter();
207
208$db->close();
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
Class to manage donations.
Definition don.class.php:41
Class to manage generation of HTML components Only common components must be here.
Class to manage building of HTML components.
Class to manage projects.
llxFooter()
Footer empty.
Definition document.php:107
donation_prepare_head($object)
Prepare array with list of tabs.
dol_dir_list($utf8_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.
Definition files.lib.php:63
dol_print_size($size, $shortvalue=0, $shortunit=0)
Return string with formatted size.
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.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
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.