dolibarr 21.0.0-alpha
box_members_by_tags.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2003-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2004-2017 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
5 * Copyright (C) 2015-2024 Frédéric France <frederic.france@free.fr>
6 * Copyright (C) 2021-2023 Waël Almoman <info@almoman.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 */
21
28include_once DOL_DOCUMENT_ROOT . '/core/boxes/modules_boxes.php';
29
30
35{
36 public $boxcode = "box_members_by_tags";
37 public $boximg = "object_user";
38 public $boxlabel = "BoxTitleMembersByTags";
39 public $depends = array("adherent", "categorie");
40
41 public $enabled = 1;
42
49 public function __construct($db, $param = '')
50 {
51 global $conf, $user;
52
53 $this->db = $db;
54
55 // disable module for such cases
56 $listofmodulesforexternal = explode(',', getDolGlobalString('MAIN_MODULES_FOR_EXTERNAL'));
57 if (!in_array('adherent', $listofmodulesforexternal) && !empty($user->socid)) {
58 $this->enabled = 0; // disabled for external users
59 }
60
61 $this->hidden = !(isModEnabled('member') && $user->hasRight('adherent', 'lire'));
62 }
63
70 public function loadBox($max = 5)
71 {
72 global $user, $langs;
73 $langs->load("boxes");
74
75 $this->max = $max;
76
77 include_once DOL_DOCUMENT_ROOT . '/adherents/class/adherent.class.php';
78 $staticmember = new Adherent($this->db);
79
80 $now = dol_now();
81 $year = date('Y');
82 $numberyears = getDolGlobalInt("MAIN_NB_OF_YEAR_IN_MEMBERSHIP_WIDGET_GRAPH", 0);
83
84 $this->info_box_head = array('text' => $langs->trans("BoxTitleMembersByTags").($numberyears ? ' ('.($year - $numberyears).' - '.$year.')' : ''));
85
86 if ($user->hasRight('adherent', 'lire')) {
87 require_once DOL_DOCUMENT_ROOT.'/adherents/class/adherentstats.class.php';
88 require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';
89 $stats = new AdherentStats($this->db, $user->socid, $user->id);
90
91 // Show array
92 $sumMembers = $stats->countMembersByTagAndStatus($numberyears);
93 if ($sumMembers) {
94 $line = 0;
95 $this->info_box_contents[$line][] = array(
96 'td' => 'class=""',
97 'text' => '',
98 );
99 // Members Status To Valid
100 $labelstatus = $staticmember->LibStatut($staticmember::STATUS_DRAFT, 0, 0, 1);
101 $this->info_box_contents[$line][] = array(
102 'td' => 'class="right tdoverflowmax100" width="10%" title="'.dol_escape_htmltag($labelstatus).'"',
103 'text' => $labelstatus
104 );
105 // Waiting for subscription
106 $labelstatus = $staticmember->LibStatut($staticmember::STATUS_VALIDATED, 1, 0, 1);
107 $this->info_box_contents[$line][] = array(
108 'td' => 'class="right tdoverflowmax100" width="10%" title="'.dol_escape_htmltag($labelstatus).'"',
109 'text' => $labelstatus,
110 );
111 // Up to date
112 $labelstatus = $staticmember->LibStatut($staticmember::STATUS_VALIDATED, 1, $now + 86400, 1);
113 $this->info_box_contents[$line][] = array(
114 'td' => 'class="right tdoverflowmax100" width="10%" title="'.dol_escape_htmltag($labelstatus).'"',
115 'text' => $labelstatus,
116 );
117 // Expired
118 $labelstatus = $staticmember->LibStatut($staticmember::STATUS_VALIDATED, 1, $now - 86400, 1);
119 $this->info_box_contents[$line][] = array(
120 'td' => 'class="right tdoverflowmax100" width="10%" title="'.dol_escape_htmltag($labelstatus).'"',
121 'text' => $labelstatus
122 );
123 // Excluded
124 $labelstatus = $staticmember->LibStatut($staticmember::STATUS_EXCLUDED, 0, 0, 1);
125 $this->info_box_contents[$line][] = array(
126 'td' => 'class="right tdoverflowmax100" width="10%" title="'.dol_escape_htmltag($labelstatus).'"',
127 'text' => $labelstatus
128 );
129 // Resiliated
130 $labelstatus = $staticmember->LibStatut($staticmember::STATUS_RESILIATED, 0, 0, 1);
131 $this->info_box_contents[$line][] = array(
132 'td' => 'class="right tdoverflowmax100" width="10%" title="'.dol_escape_htmltag($labelstatus).'"',
133 'text' => $labelstatus
134 );
135 // Total row
136 $this->info_box_contents[$line][] = array(
137 'td' => 'class="right tdoverflowmax100" width="10%" title="'.dol_escape_htmltag($langs->trans("Total")).'"',
138 'text' => $langs->trans("Total")
139 );
140 $line++;
141 $AdherentTag = array();
142 foreach ($sumMembers as $key => $data) {
143 if ($key == 'total') {
144 break;
145 }
146 $adhtag = new Categorie($this->db);
147 $adhtag->id = (int) $key;
148 $adhtag->label = $data['label'];
149 $AdherentTag[$key] = $adhtag;
150
151 $this->info_box_contents[$line][] = array(
152 'td' => 'class="tdoverflowmax150 maxwidth150onsmartphone"',
153 'text' => '<a href="'.DOL_MAIN_URL_ROOT.'/adherents/list.php?search_categ='.$adhtag->id.'&sortfield=d.datefin,t.subscription&sortorder=desc,desc&backtopage='.urlencode($_SERVER['PHP_SELF']).'">'.dol_trunc(($adhtag->ref ? $adhtag->ref : $adhtag->label), dol_size(32)).'</a>',
154 'asis' => 1,
155 );
156 $this->info_box_contents[$line][] = array(
157 'td' => 'class="right"',
158 'text' => (isset($data['members_draft']) && $data['members_draft'] > 0 ? $data['members_draft'] : '') . ' ' . $staticmember->LibStatut(Adherent::STATUS_DRAFT, 1, 0, 3),
159 'asis' => 1,
160 );
161 $this->info_box_contents[$line][] = array(
162 'td' => 'class="right"',
163 'text' => (isset($data['members_pending']) && $data['members_pending'] > 0 ? $data['members_pending'] : '') . ' ' . $staticmember->LibStatut(Adherent::STATUS_VALIDATED, 1, 0, 3),
164 'asis' => 1,
165 );
166 $this->info_box_contents[$line][] = array(
167 'td' => 'class="right"',
168 'text' => (isset($data['members_uptodate']) && $data['members_uptodate'] > 0 ? $data['members_uptodate'] : '') . ' ' . $staticmember->LibStatut(Adherent::STATUS_VALIDATED, 0, $now + 86400, 3),
169 'asis' => 1,
170 );
171 $this->info_box_contents[$line][] = array(
172 'td' => 'class="right"',
173 'text' => (isset($data['members_expired']) && $data['members_expired'] > 0 ? $data['members_expired'] : '') . ' ' . $staticmember->LibStatut(Adherent::STATUS_VALIDATED, 1, $now - 86400, 3),
174 'asis' => 1,
175 );
176 $this->info_box_contents[$line][] = array(
177 'td' => 'class="right"',
178 'text' => (isset($data['members_excluded']) && $data['members_excluded'] > 0 ? $data['members_excluded'] : '') . ' ' . $staticmember->LibStatut(Adherent::STATUS_EXCLUDED, 1, $now, 3),
179 'asis' => 1,
180 );
181 $this->info_box_contents[$line][] = array(
182 'td' => 'class="right"',
183 'text' => (isset($data['members_resiliated']) && $data['members_resiliated'] > 0 ? $data['members_resiliated'] : '') . ' ' . $staticmember->LibStatut(Adherent::STATUS_RESILIATED, 1, 0, 3),
184 'asis' => 1,
185 );
186 $this->info_box_contents[$line][] = array(
187 'td' => 'class="right"',
188 'text' => (isset($data['total_adhtag']) && $data['total_adhtag'] > 0 ? $data['total_adhtag'] : ''),
189 'asis' => 1,
190 );
191 $line++;
192 }
193
194 if (count($sumMembers) == 0) {
195 $this->info_box_contents[$line][0] = array(
196 'td' => 'class="center" colspan="6"',
197 'text' => $langs->trans("NoRecordedMembersByType")
198 );
199 } else {
200 $this->info_box_contents[$line][] = array(
201 'tr' => 'class="liste_total"',
202 'td' => 'class="liste_total"',
203 'text' => $langs->trans("Total")
204 );
205 $this->info_box_contents[$line][] = array(
206 'td' => 'class="liste_total right"',
207 'text' => $sumMembers['total']['members_draft'].' '.$staticmember->LibStatut(Adherent::STATUS_DRAFT, 1, 0, 3),
208 'asis' => 1
209 );
210 $this->info_box_contents[$line][] = array(
211 'td' => 'class="liste_total right"',
212 'text' => $sumMembers['total']['members_pending'].' '.$staticmember->LibStatut(Adherent::STATUS_VALIDATED, 1, 0, 3),
213 'asis' => 1
214 );
215 $this->info_box_contents[$line][] = array(
216 'td' => 'class="liste_total right"',
217 'text' => $sumMembers['total']['members_uptodate'].' '.$staticmember->LibStatut(Adherent::STATUS_VALIDATED, 0, 0, 3),
218 'asis' => 1
219 );
220 $this->info_box_contents[$line][] = array(
221 'td' => 'class="liste_total right"',
222 'text' => $sumMembers['total']['members_expired'].' '.$staticmember->LibStatut(Adherent::STATUS_VALIDATED, 1, 1, 3),
223 'asis' => 1
224 );
225 $this->info_box_contents[$line][] = array(
226 'td' => 'class="liste_total right"',
227 'text' => $sumMembers['total']['members_excluded'].' '.$staticmember->LibStatut(Adherent::STATUS_EXCLUDED, 1, 0, 3),
228 'asis' => 1
229 );
230 $this->info_box_contents[$line][] = array(
231 'td' => 'class="liste_total right"',
232 'text' => $sumMembers['total']['members_resiliated'].' '.$staticmember->LibStatut(Adherent::STATUS_RESILIATED, 1, 0, 3),
233 'asis' => 1
234 );
235 $this->info_box_contents[$line][] = array(
236 'td' => 'class="liste_total right"',
237 'text' => $sumMembers['total']['all'],
238 'asis' => 1
239 );
240 }
241 } else {
242 $this->info_box_contents[0][0] = array(
243 'td' => '',
244 'maxlength' => 500,
245 'text' => ($this->db->lasterror())
246 );
247 }
248 } else {
249 $this->info_box_contents[0][0] = array(
250 'td' => 'class="nohover left"',
251 'text' => '<span class="opacitymedium">'.$langs->trans("ReadPermissionNotAllowed").'</span>'
252 );
253 }
254 }
255
264 public function showBox($head = null, $contents = null, $nooutput = 0)
265 {
266 return parent::showBox($this->info_box_head, $this->info_box_contents, $nooutput);
267 }
268}
Class to manage members of a foundation.
const STATUS_EXCLUDED
Excluded.
const STATUS_DRAFT
Draft status.
const STATUS_RESILIATED
Resiliated.
const STATUS_VALIDATED
Validated status.
Class to manage statistics of members.
Class to manage categories.
Class ModeleBoxes.
Class to manage the box to show (last modified) members by tags.
loadBox($max=5)
Load data into info_box_contents array to show array later.
showBox($head=null, $contents=null, $nooutput=0)
Method to show box.
__construct($db, $param='')
Constructor.
dol_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dol_size($size, $type='')
Optimize a size for some browsers (phone, smarphone, ...)
dol_trunc($string, $size=40, $trunc='right', $stringencoding='UTF-8', $nodot=0, $display=0)
Truncate a string to a particular length adding '…' if string larger than length.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...