fixes
This commit is contained in:
@@ -36,6 +36,32 @@ class Contents
|
||||
return self::get(4)->text ?? '';
|
||||
}
|
||||
|
||||
public static function getOrderConfirmedContent()
|
||||
{
|
||||
return self::get(5)->text ?? 'Votre commande a été confirmée';
|
||||
}
|
||||
|
||||
public static function getPayboxConfirmedContent()
|
||||
{
|
||||
return self::get(6)->text ?? 'Merci pour votre règlement. Votre commande sera traitée sous peu.';
|
||||
}
|
||||
|
||||
public static function getPayboxRefusedContent()
|
||||
{
|
||||
return self::get(7)->text ?? 'Le paiement a été refusé.';
|
||||
}
|
||||
|
||||
public static function getPayboxAbortedContent()
|
||||
{
|
||||
return self::get(8)->text ?? 'Le paiement a été annulé.';
|
||||
}
|
||||
|
||||
public static function getPayboxWaitingContent()
|
||||
{
|
||||
return self::get(9)->text ?? 'Votre paiement est en attente. Cela peut prendre un certain temps jusqu\'à ce qu\'il soit terminé.';
|
||||
}
|
||||
|
||||
|
||||
public static function getModel()
|
||||
{
|
||||
return Content::query();
|
||||
|
||||
Reference in New Issue
Block a user