dolibarr 24.0.0-beta
month.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2001-2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2004-2009 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
5 * Copyright (C) 2026 MDW <mdeweerd@users.noreply.github.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
27// Load Dolibarr environment
28require '../../main.inc.php';
29require_once DOL_DOCUMENT_ROOT.'/expedition/class/expedition.class.php';
30require_once DOL_DOCUMENT_ROOT.'/expedition/class/expeditionstats.class.php';
31require_once DOL_DOCUMENT_ROOT.'/core/class/dolgraph.class.php';
32
41$year = GETPOSTINT('year');
42$socid = 0;
43
44// Security check
45if ($user->socid) {
46 $socid = $user->socid;
47}
48restrictedArea($user, 'expedition');
49
50
51/*
52 * View
53 */
54
55llxHeader('', '', '', '', 0, 0, '', '', '', 'mod-expedition page-stats_month');
56
59
60$mesg = '';
61$mode = '';
62
63print load_fiche_titre($langs->trans("StatisticsOfSendings").' '.$year, $mesg);
64
65$stats = new ExpeditionStats($db, $socid, $mode);
66$data = $stats->getNbByMonth($year);
67
68dol_mkdir($conf->expedition->dir_temp);
69
70$filename = $conf->expedition->dir_temp."/expedition".$year.".png";
71$fileurl = DOL_URL_ROOT.'/viewimage.php?modulepart=expeditionstats&file=expedition'.$year.'.png';
72
73$px = new DolGraph();
74$mesg = $px->isGraphKo();
75if (!$mesg) {
76 $px->SetData($data);
77 $px->SetMaxValue($px->GetCeilMaxValue());
78 $px->SetWidth($WIDTH);
79 $px->SetHeight($HEIGHT);
80 $px->SetYLabel($langs->trans("NbOfSendings"));
81 $px->SetShading(3);
82 $px->SetHorizTickIncrement(1);
83 $px->draw($filename, $fileurl);
84}
85
86print '<table class="border centpercent">';
87print '<tr><td class="center">'.$langs->trans("NbOfSendingsByMonth").'</td>';
88print '<td class="center">';
89print $px->show();
90print '</td></tr>';
91print '</table>';
92
93// End of page
94llxFooter();
95$db->close();
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
Definition wrapper.php:91
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:73
Class to build graphs.
static getDefaultGraphSizeForStats($direction, $defaultsize='')
getDefaultGraphSizeForStats
Class to manage shipment statistics.
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $conf
The main.inc.php has been included so the following variable are now defined:
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $db
API class for accounts.
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='', $morecssonpicto='widthpictotitle')
Load a title with picto.
dol_mkdir($dir, $dataroot='', $newmask='')
Creation of a directory (this can create recursive subdir)
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.