25require
'../main.inc.php';
26require_once DOL_DOCUMENT_ROOT.
'/core/lib/donation.lib.php';
27require_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
28require_once DOL_DOCUMENT_ROOT.
'/don/class/don.class.php';
29if (isModEnabled(
'project')) {
30 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formprojet.class.php';
31 require_once DOL_DOCUMENT_ROOT.
'/projet/class/project.class.php';
34$langs->load(
'donations');
38$action =
GETPOST(
'action',
'aZ09');
39$projectid = (
GETPOST(
'projectid') ?
GETPOST(
'projectid',
'int') : 0);
41$object =
new Don($db);
43 $object->fetch($id, $ref);
48 $socid = $user->socid;
58if ($action ==
'classin' && $user->hasRight(
'don',
'creer')) {
60 $object->setProject($projectid);
68$title = $langs->trans(
'Donation').
" - ".$langs->trans(
'Info');
70$help_url =
'EN:Module_Donations|FR:Module_Dons|ES:Módulo_Donaciones|DE:Modul_Spenden';
75if (isModEnabled(
'project')) {
85$linkback =
'<a href="'.DOL_URL_ROOT.
'/don/list.php'.(!empty($socid) ?
'?socid='.$socid :
'').
'">'.$langs->trans(
"BackToList").
'</a>';
87$morehtmlref =
'<div class="refidno">';
89if (isModEnabled(
'project')) {
90 $langs->load(
"projects");
91 $morehtmlref .= $langs->trans(
'Project').
' ';
92 if ($user->hasRight(
'don',
'creer')) {
93 if ($action !=
'classify') {
96 if ($action ==
'classify') {
98 $morehtmlref .=
'<form method="post" action="'.$_SERVER[
'PHP_SELF'].
'?id='.$object->id.
'">';
99 $morehtmlref .=
'<input type="hidden" name="action" value="classin">';
100 $morehtmlref .=
'<input type="hidden" name="token" value="'.newToken().
'">';
101 $morehtmlref .= $formproject->select_projects($object->socid, $object->fk_project,
'projectid', $maxlength, 0, 1, 0, 1, 0, 0,
'', 1);
102 $morehtmlref .=
'<input type="submit" class="button valignmiddle" value="'.$langs->trans(
"Modify").
'">';
103 $morehtmlref .=
'</form>';
105 $morehtmlref .= $form->form_project($_SERVER[
'PHP_SELF'].
'?id='.$object->id, $object->socid, $object->fk_project,
'none', 0, 0, 0, 1,
'',
'maxwidth300');
108 if (!empty($object->fk_project)) {
110 $proj->fetch($object->fk_project);
111 $morehtmlref .=
' : '.$proj->getNomUrl(1);
113 $morehtmlref .=
' - '.$proj->title;
120$morehtmlref .=
'</div>';
122dol_banner_tab($object,
'rowid', $linkback, 1,
'rowid',
'ref', $morehtmlref);
124print
'<div class="fichecenter">';
125print
'<div class="underbanner clearboth"></div>';
129print
'<table width="100%"><tr><td>';
131print
'</td></tr></table>';
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Class to manage donations.
Class to manage projects.
donation_prepare_head($object)
Prepare array with list of tabs.
dol_print_object_info($object, $usetable=0)
Show informations on an object TODO Move this into html.formother.
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.
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.
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.