dolibarr 21.0.0-alpha
info.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2014-2024 Alexandre Spangaro <alexandre@inovea-conseil.com>
3 * Copyright (C) 2017 Ferran Marcet <fmarcet@2byte.es>
4 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
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// Load Dolibarr environment
27require '../main.inc.php';
28require_once DOL_DOCUMENT_ROOT.'/loan/class/loan.class.php';
29require_once DOL_DOCUMENT_ROOT.'/core/lib/loan.lib.php';
30require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
31if (isModEnabled('project')) {
32 require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
33}
34
35// Load translation files required by the page
36$langs->loadLangs(array("compta", "bills", "loan"));
37
38$id = GETPOSTINT('id');
39$action = GETPOST('action', 'aZ09');
40
41// Security check
42$socid = GETPOSTINT('socid');
43if ($user->socid) {
44 $socid = $user->socid;
45}
46$result = restrictedArea($user, 'loan', $id, '', '');
47
48
49/*
50 * View
51 */
52
53$form = new Form($db);
54
55$title = $langs->trans("Loan").' - '.$langs->trans("Info");
56$help_url = 'EN:Module_Loan|FR:Module_Emprunt';
57
58llxHeader("", $title, $help_url, '', 0, 0, '', '', '', 'mod-loan page-card_info');
59
60$object = new Loan($db);
61$object->fetch($id);
62$object->info($id);
63
64$head = loan_prepare_head($object);
65
66print dol_get_fiche_head($head, 'info', $langs->trans("Loan"), -1, 'money-bill-alt');
67
68$morehtmlref = '<div class="refidno">';
69// Ref loan
70$morehtmlref .= $form->editfieldkey("Label", 'label', $object->label, $object, 0, 'string', '', 0, 1);
71$morehtmlref .= $form->editfieldval("Label", 'label', $object->label, $object, 0, 'string', '', null, null, '', 1);
72// Project
73if (isModEnabled('project')) {
74 $langs->load("projects");
75 $morehtmlref .= '<br>'.$langs->trans('Project').' : ';
76 if ($user->hasRight('loan', 'write')) {
77 //if ($action != 'classify')
78 // $morehtmlref .= '<a class="editfielda" href="' . $_SERVER['PHP_SELF'] . '?action=classify&token='.newToken().'&id=' . $object->id . '">' . img_edit($langs->transnoentitiesnoconv('SetProject')) . '</a> : ';
79 if ($action == 'classify') {
80 // $morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'projectid', 0, 0, 1, 1);
81 $morehtmlref .= '<form method="post" action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'">';
82 $morehtmlref .= '<input type="hidden" name="action" value="classin">';
83 $morehtmlref .= '<input type="hidden" name="token" value="'.newToken().'">';
84 $morehtmlref .= $formproject->select_projects($object->socid, $object->fk_project, 'projectid', $maxlength, 0, 1, 0, 1, 0, 0, '', 1);
85 $morehtmlref .= '<input type="submit" class="button valignmiddle" value="'.$langs->trans("Modify").'">';
86 $morehtmlref .= '</form>';
87 } else {
88 $morehtmlref .= $form->form_project($_SERVER['PHP_SELF'].'?id='.$object->id, $object->socid, $object->fk_project, 'none', 0, 0, 0, 1, '', 'maxwidth300');
89 }
90 } else {
91 if (!empty($object->fk_project)) {
92 $proj = new Project($db);
93 $proj->fetch($object->fk_project);
94 $morehtmlref .= ' : '.$proj->getNomUrl(1);
95 if ($proj->title) {
96 $morehtmlref .= ' - '.$proj->title;
97 }
98 } else {
99 $morehtmlref .= '';
100 }
101 }
102}
103$morehtmlref .= '</div>';
104
105$linkback = '<a href="'.DOL_URL_ROOT.'/loan/list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
106
107$morehtmlstatus = $morehtmlright;
108dol_banner_tab($object, 'id', $linkback, 1, 'rowid', 'ref', $morehtmlref, '', 0, '', $morehtmlstatus);
109
110print '<div class="fichecenter">';
111print '<div class="underbanner clearboth"></div>';
112
113print '<br>';
114
115print '<table width="100%"><tr><td>';
116dol_print_object_info($object);
117print '</td></tr></table>';
118
119print '</div>';
120
121// End of page
122llxFooter();
123$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 generation of HTML components Only common components must be here.
Loan.
Class to manage projects.
llxFooter()
Footer empty.
Definition document.php:107
dol_print_object_info($object, $usetable=0)
Show information on an object TODO Move this into html.formother.
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.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
loan_prepare_head($object)
Prepare array with list of tabs.
Definition loan.lib.php:33
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.