27 include_once DOL_DOCUMENT_ROOT.
'/core/modules/mailings/modules_mailings.php';
28 include_once DOL_DOCUMENT_ROOT.
'/core/class/html.form.class.php';
36 public $name =
'FundationMembers';
38 public $desc =
'Foundation members with emails';
40 public $require_admin = 0;
42 public $require_module = array(
'adherent');
47 public $picto =
'user';
77 $langs->load(
"members");
82 $statssql[0] =
"SELECT '".$this->db->escape($langs->trans(
"FundationMembers")).
"' as label, count(*) as nb";
83 $statssql[0] .=
" FROM ".MAIN_DB_PREFIX.
"adherent where statut = 1 and entity IN (".
getEntity(
'member').
")";
99 $sql =
"SELECT count(distinct(a.email)) as nb";
100 $sql .=
" FROM ".MAIN_DB_PREFIX.
"adherent as a";
101 $sql .=
" WHERE (a.email IS NOT NULL AND a.email != '') AND a.entity IN (".getEntity(
'member').
")";
105 return parent::getNbOfRecipients($sql);
116 global $conf, $langs;
119 $langs->loadLangs(array(
"members",
"companies",
"categories"));
121 $form =
new Form($this->
db);
126 $s .= $langs->trans(
"Status").
': ';
127 $s .=
'<select name="filter" class="flat">';
128 $s .=
'<option value="none"> </option>';
129 $s .=
'<option value="-1">'.$langs->trans(
"MemberStatusDraft").
'</option>';
130 $s .=
'<option value="1a">'.$langs->trans(
"MemberStatusActiveShort").
' ('.$langs->trans(
"MemberStatusPaidShort").
')</option>';
131 $s .=
'<option value="1b">'.$langs->trans(
"MemberStatusActiveShort").
' ('.$langs->trans(
"MemberStatusActiveLateShort").
')</option>';
132 $s .=
'<option value="0">'.$langs->trans(
"MemberStatusResiliatedShort").
'</option>';
134 $s .= $langs->trans(
"Type").
': ';
135 $s .=
'<select name="filter_type" class="flat">';
136 $sql =
"SELECT rowid, libelle as label, statut";
137 $sql .=
" FROM ".MAIN_DB_PREFIX.
"adherent_type";
138 $sql .=
" WHERE entity IN (".getEntity(
'member_type').
")";
139 $sql .=
" ORDER BY rowid";
145 $s .=
'<option value="0"> </option>';
146 if (!$num) $s .=
'<option value="0" disabled="disabled">'.$langs->trans(
"NoCategoriesDefined").
'</option>';
151 $obj = $this->
db->fetch_object(
$resql);
153 $s .=
'<option value="'.$obj->rowid.
'">'.
dol_trunc($obj->label, 38,
'middle');
165 $s .= $langs->trans(
"Category").
': ';
166 $s .=
'<select name="filter_category" class="flat">';
169 $sql =
"SELECT rowid, label, type, visible";
170 $sql .=
" FROM ".MAIN_DB_PREFIX.
"categorie";
171 $sql .=
" WHERE type = 3";
173 $sql .=
" AND entity = ".$conf->entity;
174 $sql .=
" ORDER BY label";
182 $s .=
'<option value="0"> </option>';
183 if (!$num) $s .=
'<option value="0" disabled>'.$langs->trans(
"NoCategoriesDefined").
'</option>';
188 $obj = $this->
db->fetch_object(
$resql);
190 $s .=
'<option value="'.$obj->rowid.
'">'.
dol_trunc($obj->label, 38,
'middle');
202 $s .= $langs->trans(
"DateEndSubscription").
': ';
203 $s .= $langs->trans(
"After").
' > '.$form->selectDate(-1,
'subscriptionafter', 0, 0, 1,
'fraise', 1, 0, 0);
205 $s .= $langs->trans(
"Before").
' < '.$form->selectDate(-1,
'subscriptionbefore', 0, 0, 1,
'fraise', 1, 0, 0);
219 return '<a href="'.DOL_URL_ROOT.
'/adherents/card.php?rowid='.$id.
'">'.
img_object(
'',
"user").
'</a>';
233 global $langs, $_POST;
236 $langs->loadLangs(array(
"members",
"companies"));
241 $dateendsubscriptionafter =
dol_mktime(
GETPOST(
'subscriptionafterhour',
'int'),
GETPOST(
'subscriptionaftermin',
'int'),
GETPOST(
'subscriptionaftersec',
'int'),
GETPOST(
'subscriptionaftermonth',
'int'),
GETPOST(
'subscriptionafterday',
'int'),
GETPOST(
'subscriptionafteryear',
'int'));
242 $dateendsubscriptionbefore =
dol_mktime(
GETPOST(
'subscriptionbeforehour',
'int'),
GETPOST(
'subscriptionbeforemin',
'int'),
GETPOST(
'subscriptionbeforesec',
'int'),
GETPOST(
'subscriptionbeforemonth',
'int'),
GETPOST(
'subscriptionbeforeday',
'int'),
GETPOST(
'subscriptionbeforeyear',
'int'));
245 $sql =
"SELECT a.rowid as id, a.email as email, null as fk_contact, ";
246 $sql .=
" a.lastname, a.firstname,";
247 $sql .=
" a.datefin, a.civility as civility_id, a.login, a.societe";
248 $sql .=
" FROM ".MAIN_DB_PREFIX.
"adherent as a";
249 if (
GETPOST(
'filter_category'))
251 $sql .=
" INNER JOIN ".MAIN_DB_PREFIX.
"categorie_member as cm ON cm.fk_member = a.rowid";
252 $sql .=
" INNER JOIN ".MAIN_DB_PREFIX.
"categorie as c ON c.rowid = cm.fk_categorie AND c.rowid = ".((int)
GETPOST(
'filter_category',
'int'));
254 $sql .=
" , ".MAIN_DB_PREFIX.
"adherent_type as ta";
255 $sql .=
" WHERE a.entity IN (".getEntity(
'member').
") AND a.email <> ''";
256 $sql .=
" AND a.email NOT IN (SELECT email FROM ".MAIN_DB_PREFIX.
"mailing_cibles WHERE fk_mailing=".$this->
db->escape($mailing_id).
")";
258 if (
GETPOST(
"filter") ==
'-1') {
259 $sql .=
" AND a.statut=-1";
261 if (
GETPOST(
"filter",
'aZ09') ==
'1a') $sql .=
" AND a.statut=1 AND (a.datefin >= '".$this->db->idate($now).
"' OR ta.subscription = 0)";
262 if (
GETPOST(
"filter",
'aZ09') ==
'1b') $sql .=
" AND a.statut=1 AND ((a.datefin IS NULL or a.datefin < '".$this->db->idate($now).
"') AND ta.subscription = 1)";
263 if (
GETPOST(
"filter",
'aZ09') ===
'0') $sql .=
" AND a.statut=0";
265 if ($dateendsubscriptionafter > 0) $sql .=
" AND datefin > '".$this->db->idate($dateendsubscriptionafter).
"'";
266 if ($dateendsubscriptionbefore > 0) $sql .=
" AND datefin < '".$this->db->idate($dateendsubscriptionbefore).
"'";
267 $sql .=
" AND a.fk_adherent_type = ta.rowid";
269 if (
GETPOST(
'filter_type',
'int') > 0) $sql .=
" AND ta.rowid='".$this->db->escape(
GETPOST(
'filter_type',
'int')).
"'";
270 $sql .=
" ORDER BY a.email";
274 dol_syslog(get_class($this).
"::add_to_target", LOG_DEBUG);
275 $result = $this->
db->query($sql);
278 $num = $this->
db->num_rows($result);
282 dol_syslog(get_class($this).
"::add_to_target mailing ".$num.
" targets found");
287 $obj = $this->
db->fetch_object($result);
288 if ($old <> $obj->email)
291 'email' => $obj->email,
292 'fk_contact' => $obj->fk_contact,
293 'lastname' => $obj->lastname,
294 'firstname' => $obj->firstname,
296 ($langs->transnoentities(
"Login").
'='.$obj->login).
';'.
297 ($langs->transnoentities(
"UserTitle").
'='.($obj->civility_id ? $langs->transnoentities(
"Civility".$obj->civility_id) :
'')).
';'.
298 ($langs->transnoentities(
"DateEnd").
'='.
dol_print_date($this->
db->jdate($obj->datefin),
'day')).
';'.
299 ($langs->transnoentities(
"Company").
'='.$obj->societe),
300 'source_url' => $this->
url($obj->id),
301 'source_id' => $obj->id,
302 'source_type' =>
'member'
312 $this->error = $this->
db->error();
316 return parent::addTargetsToDatabase($mailing_id, $cibles);
GETPOST($paramname, $check= 'alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_mktime($hour, $minute, $second, $month, $day, $year, $gm= 'auto', $check=1)
Return a timestamp date built from detailed informations (by default a local PHP server timestamp) Re...
add_to_target($mailing_id)
Ajoute destinataires dans table des cibles.
getSqlArrayForStats()
On the main mailing area, there is a box with statistics.
formFilter()
Affiche formulaire de filtre qui apparait dans page de selection des destinataires de mailings...
dol_now($mode= 'auto')
Return date for now.
$conf db
API class for accounts.
getEntity($element, $shared=1, $currentobject=null)
Get list of entity id to use.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename= '', $restricttologhandler= '', $logcontext=null)
Write log message into outputs.
img_object($titlealt, $picto, $moreatt= '', $pictoisfullpath=false, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
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 generate target according to rule Fraise.
if(!empty($conf->facture->enabled)&&$user->rights->facture->lire) if((!empty($conf->fournisseur->enabled)&&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD)||!empty($conf->supplier_invoice->enabled))&&$user->rights->fournisseur->facture->lire) if(!empty($conf->don->enabled)&&$user->rights->don->lire) if(!empty($conf->tax->enabled)&&$user->rights->tax->charges->lire) if(!empty($conf->facture->enabled)&&!empty($conf->commande->enabled)&&$user->rights->commande->lire &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) if(!empty($conf->facture->enabled)&&$user->rights->facture->lire) if((!empty($conf->fournisseur->enabled)&&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD)||!empty($conf->supplier_invoice->enabled))&&$user->rights->fournisseur->facture->lire) $resql
Social contributions to pay.
dol_print_error($db= '', $error= '', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
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.
__construct($db)
Constructor.
url($id)
Renvoie url lien vers fiche de la source du destinataire du mailing.
getNbOfRecipients($sql= '')
Return here number of distinct emails returned by your selector.
Parent class of emailing target selectors modules.