Renaming from sendfacrecmail to sendrecurringinvoicebymail

Since Dolibarr 10.0 just came out, this module may (at last) become
useful. Let's use a more easily understandable name for it.
This commit is contained in:
Chl 2019-08-03 19:01:22 +02:00
parent 16315f630c
commit 4a56e8b1c0
10 changed files with 129 additions and 125 deletions

View file

@ -16,17 +16,17 @@
*/
/**
* \file sendfacrecmail/class/actions_sendfacrecmail.class.php
* \ingroup sendfacrecmail
* \brief Hook overload for SendFacRecEmail
* \file sendrecurringinvoicebymail/class/actions_sendrecurringinvoicebymail.class.php
* \ingroup sendrecurringinvoicebymail
* \brief Hook overload for cron / afterCreationOfRecurringInvoice()
*
* Put detailed description here.
*/
/**
* Class Actionssendfacrecmail
* Class Actionssendrecurringinvoicebymail
*/
class Actionssendfacrecmail
class Actionssendrecurringinvoicebymail
{
/**
* @var DoliDB Database handler.
@ -94,9 +94,9 @@ class Actionssendfacrecmail
// récupération du template du mail
// (pas très précise mais je commence à en avoir marre de creuser tout dolibarr pour trouver les bonnes fonctions...)
$result = $this->db->query("SELECT * FROM " . MAIN_DB_PREFIX . "c_email_templates WHERE module = 'sendfacrecmail' AND active = 1 AND enabled = '1' ORDER BY tms DESC LIMIT 1");
$result = $this->db->query("SELECT * FROM " . MAIN_DB_PREFIX . "c_email_templates WHERE module = 'sendrecurringinvoicebymail' AND active = 1 AND enabled = '1' ORDER BY tms DESC LIMIT 1");
if ( ! $result or ! ($template = $this->db->fetch_object($result))) {
$this->error = "Can't find mail template for sendfacrecmail";
$this->error = "Can't find mail template for sendrecurringinvoicebymail";
$this->errors[] = $this->error;
$error++;
return -1;