dolibarr  19.0.0-dev
box_birthdays_members.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2003-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3  * Copyright (C) 2004-2010 Laurent Destailleur <eldy@users.sourceforge.net>
4  * Copyright (C) 2005-2009 Regis Houssin <regis.houssin@inodbox.com>
5  * Copyright (C) 2015-2023 Frederic France <frederic.france@netlogic.fr>
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 include_once DOL_DOCUMENT_ROOT.'/core/boxes/modules_boxes.php';
28 
29 
34 {
35  public $boxcode = "birthdays_members";
36  public $boximg = "object_user";
37  public $boxlabel = "BoxTitleMemberNextBirthdays";
38  public $depends = array("adherent");
39 
43  public $db;
44 
45  public $enabled = 1;
46 
47  public $info_box_head = array();
48  public $info_box_contents = array();
49 
50 
57  public function __construct($db, $param = '')
58  {
59  global $user;
60 
61  $this->db = $db;
62 
63  $this->hidden = !($user->hasRight("adherent", "lire") && empty($user->socid));
64  }
65 
72  public function loadBox($max = 20)
73  {
74  global $conf, $user, $langs;
75 
76  include_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
77  include_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent.class.php';
78  $memberstatic = new Adherent($this->db);
79 
80  $langs->load("boxes");
81 
82  $this->max = $max;
83 
84  $this->info_box_head = array('text' => $langs->trans("BoxTitleMemberNextBirthdays"));
85 
86  if ($user->hasRight('adherent', 'lire')) {
87  $data = array();
88 
89  $tmparray = dol_getdate(dol_now(), true);
90 
91  $sql = "SELECT u.rowid, u.firstname, u.lastname, u.societe, u.birth, date_format(u.birth, '%d') as daya, u.email, u.statut as status, u.datefin";
92  $sql .= " FROM ".MAIN_DB_PREFIX."adherent as u";
93  $sql .= " WHERE u.entity IN (".getEntity('adherent').")";
94  $sql .= " AND u.statut = ".Adherent::STATUS_VALIDATED;
95  $sql .= dolSqlDateFilter('u.birth', 0, $tmparray['mon'], 0);
96  $sql .= " ORDER BY daya ASC"; // We want to have date of the month sorted by the day without taking into consideration the year
97  $sql .= $this->db->plimit($max, 0);
98 
99  dol_syslog(get_class($this)."::loadBox", LOG_DEBUG);
100  $resql = $this->db->query($sql);
101  if ($resql) {
102  $num = $this->db->num_rows($resql);
103 
104  $line = 0;
105  while ($line < $num) {
106  $data[$line] = $this->db->fetch_object($resql);
107 
108  $line++;
109  }
110 
111  $this->db->free($resql);
112  }
113 
114  if (!empty($data)) {
115  $j = 0;
116  while ($j < count($data)) {
117  $memberstatic->id = $data[$j]->rowid;
118  $memberstatic->firstname = $data[$j]->firstname;
119  $memberstatic->lastname = $data[$j]->lastname;
120  $memberstatic->company = $data[$j]->societe;
121  $memberstatic->email = $data[$j]->email;
122  $memberstatic->status = $data[$j]->status;
123  $memberstatic->statut = $data[$j]->status;
124  $memberstatic->datefin = $this->db->jdate($data[$j]->datefin);
125 
126  $dateb = $this->db->jdate($data[$j]->birth);
127  $age = date('Y', dol_now()) - date('Y', $dateb);
128 
129  $typea = '<i class="fas fa-birthday-cake inline-block"></i>';
130 
131  $this->info_box_contents[$j][0] = array(
132  'td' => '',
133  'text' => $memberstatic->getNomUrl(1),
134  'asis' => 1,
135  );
136 
137  $this->info_box_contents[$j][1] = array(
138  'td' => 'class="center nowraponall"',
139  'text' => dol_print_date($dateb, "day", 'tzserver').' - '.$age.' '.$langs->trans('DurationYears')
140  );
141 
142  $this->info_box_contents[$j][2] = array(
143  'td' => 'class="right nowraponall"',
144  'text' => $typea,
145  'asis' => 1
146  );
147 
148  /*$this->info_box_contents[$j][3] = array(
149  'td' => 'class="right" width="18"',
150  'text' => $memberstatic->LibStatut($objp->status, 3)
151  );*/
152 
153  $j++;
154  }
155  }
156  if (is_array($data) && count($data) == 0) {
157  $this->info_box_contents[0][0] = array(
158  'td' => 'class="center"',
159  'text' => '<span class="opacitymedium">'.$langs->trans("None").'</span>',
160  );
161  }
162  } else {
163  $this->info_box_contents[0][0] = array(
164  'td' => 'class="nohover left"',
165  'text' => '<span class="opacitymedium">'.$langs->trans("ReadPermissionNotAllowed").'</span>'
166  );
167  }
168  }
169 
178  public function showBox($head = null, $contents = null, $nooutput = 0)
179  {
180  return parent::showBox($this->info_box_head, $this->info_box_contents, $nooutput);
181  }
182 }
Class to manage members of a foundation.
Class ModeleBoxes.
Class to manage the box to show members birthdays.
showBox($head=null, $contents=null, $nooutput=0)
Method to show box.
__construct($db, $param='')
Constructor.
loadBox($max=20)
Load data for box to show them later.
if(isModEnabled('facture') && $user->hasRight('facture', 'lire')) if((isModEnabled('fournisseur') &&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD) && $user->hasRight("fournisseur", "facture", "lire"))||(isModEnabled('supplier_invoice') && $user->hasRight("supplier_invoice", "lire"))) if(isModEnabled('don') && $user->hasRight('don', 'lire')) if(isModEnabled('tax') &&!empty($user->rights->tax->charges->lire)) if(isModEnabled('facture') &&isModEnabled('commande') && $user->hasRight("commande", "lire") &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) $sql
Social contributions to pay.
Definition: index.php:746
dolSqlDateFilter($datefield, $day_date, $month_date, $year_date, $excludefirstand=0, $gm=false)
Generate a SQL string to make a filter into a range (for second of date until last second of date).
Definition: date.lib.php:359
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs='', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
dol_now($mode='auto')
Return date for now.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
dol_getdate($timestamp, $fast=false, $forcetimezone='')
Return an array with locale date info.