dolibarr  13.0.2
box_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-2017 Laurent Destailleur <eldy@users.sourceforge.net>
4  * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
5  * Copyright (C) 2015-2020 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 
33 class box_members extends ModeleBoxes
34 {
35  public $boxcode = "lastmembers";
36  public $boximg = "object_user";
37  public $boxlabel = "BoxLastMembers";
38  public $depends = array("adherent");
39 
43  public $db;
44 
45  public $param;
46  public $enabled = 1;
47 
48  public $info_box_head = array();
49  public $info_box_contents = array();
50 
51 
58  public function __construct($db, $param = '')
59  {
60  global $conf, $user;
61 
62  $this->db = $db;
63 
64  // disable module for such cases
65  $listofmodulesforexternal = explode(',', $conf->global->MAIN_MODULES_FOR_EXTERNAL);
66  if (!in_array('adherent', $listofmodulesforexternal) && !empty($user->socid)) $this->enabled = 0; // disabled for external users
67 
68  $this->hidden = !($user->rights->adherent->lire);
69  }
70 
77  public function loadBox($max = 5)
78  {
79  global $user, $langs, $conf;
80  $langs->load("boxes");
81 
82  $this->max = $max;
83 
84  include_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent.class.php';
85  $memberstatic = new Adherent($this->db);
86 
87  $this->info_box_head = array('text' => $langs->trans("BoxTitleLastModifiedMembers", $max));
88 
89  if ($user->rights->adherent->lire) {
90  $sql = "SELECT a.rowid, a.lastname, a.firstname, a.societe as company, a.fk_soc,";
91  $sql .= " a.datec, a.tms, a.statut as status, a.datefin as date_end_subscription,";
92  $sql .= ' a.photo, a.email, a.gender, a.morphy,';
93  $sql .= " t.subscription";
94  $sql .= " FROM ".MAIN_DB_PREFIX."adherent as a, ".MAIN_DB_PREFIX."adherent_type as t";
95  $sql .= " WHERE a.entity IN (".getEntity('member').")";
96  $sql .= " AND a.fk_adherent_type = t.rowid";
97  $sql .= " ORDER BY a.tms DESC";
98  $sql .= $this->db->plimit($max, 0);
99 
100  $result = $this->db->query($sql);
101  if ($result) {
102  $num = $this->db->num_rows($result);
103 
104  $line = 0;
105  while ($line < $num) {
106  $objp = $this->db->fetch_object($result);
107  $datec = $this->db->jdate($objp->datec);
108  $datem = $this->db->jdate($objp->tms);
109 
110  $memberstatic->lastname = $objp->lastname;
111  $memberstatic->firstname = $objp->firstname;
112  $memberstatic->id = $objp->rowid;
113  $memberstatic->ref = $objp->rowid;
114  $memberstatic->photo = $objp->photo;
115  $memberstatic->gender = $objp->gender;
116  $memberstatic->email = $objp->email;
117  $memberstatic->morphy = $objp->morphy;
118  $memberstatic->company = $objp->company;
119  $memberstatic->statut = $objp->status;
120  $memberstatic->date_creation = $datec;
121  $memberstatic->date_modification = $datem;
122  $memberstatic->need_subscription = $objp->subscription;
123  $memberstatic->datefin = $this->db->jdate($objp->date_end_subscription);
124 
125  if (!empty($objp->fk_soc)) {
126  $memberstatic->socid = $objp->fk_soc;
127  $memberstatic->fetch_thirdparty();
128  $memberstatic->name = $memberstatic->thirdparty->name;
129  } else {
130  $memberstatic->name = $objp->company;
131  }
132 
133  $this->info_box_contents[$line][] = array(
134  'td' => 'class="tdoverflowmax150 maxwidth150onsmartphone"',
135  'text' => $memberstatic->getNomUrl(-1),
136  'asis' => 1,
137  );
138 
139  $this->info_box_contents[$line][] = array(
140  'td' => 'class="tdoverflowmax150 maxwidth150onsmartphone"',
141  'text' => $memberstatic->company,
142  'url' => DOL_URL_ROOT."/adherents/card.php?rowid=".$objp->rowid,
143  );
144 
145  $this->info_box_contents[$line][] = array(
146  'td' => 'class="right"',
147  'text' => dol_print_date($datem, "day"),
148  );
149 
150  $this->info_box_contents[$line][] = array(
151  'td' => 'class="right" width="18"',
152  'text' => $memberstatic->LibStatut($objp->status, $objp->subscription, $this->db->jdate($objp->date_end_subscription), 3),
153  );
154 
155  $line++;
156  }
157 
158  if ($num == 0)
159  $this->info_box_contents[$line][0] = array(
160  'td' => 'class="center"',
161  'text'=>$langs->trans("NoRecordedCustomers"),
162  );
163 
164  $this->db->free($result);
165  } else {
166  $this->info_box_contents[0][0] = array(
167  'td' => '',
168  'maxlength'=>500,
169  'text' => ($this->db->error().' sql='.$sql),
170  );
171  }
172  } else {
173  $this->info_box_contents[0][0] = array(
174  'td' => 'class="nohover opacitymedium left"',
175  'text' => $langs->trans("ReadPermissionNotAllowed")
176  );
177  }
178  }
179 
188  public function showBox($head = null, $contents = null, $nooutput = 0)
189  {
190  return parent::showBox($this->info_box_head, $this->info_box_contents, $nooutput);
191  }
192 }
Class ModeleBoxes.
$conf db
API class for accounts.
Definition: inc.php:54
loadBox($max=5)
Load data into info_box_contents array to show array later.
Definition: box_members.php:77
Class to manage members of a foundation.
showBox($head=null, $contents=null, $nooutput=0)
Method to show box.
dol_print_date($time, $format= '', $tzoutput= 'auto', $outputlangs= '', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
Class to manage the box to show last members.
Definition: box_members.php:33
__construct($db, $param= '')
Constructor.
Definition: box_members.php:58