Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dolibarr
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
a9bac247
Commit
a9bac247
authored
20 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Trad: Traduction du nouvel outil de mailing.
parent
ebd27df1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
htdocs/comm/mailing/cibles.php
+1
-3
1 addition, 3 deletions
htdocs/comm/mailing/cibles.php
htdocs/comm/mailing/fiche.php
+1
-3
1 addition, 3 deletions
htdocs/comm/mailing/fiche.php
htdocs/comm/mailing/mailing.class.php
+10
-7
10 additions, 7 deletions
htdocs/comm/mailing/mailing.class.php
with
12 additions
and
13 deletions
htdocs/comm/mailing/cibles.php
+
1
−
3
View file @
a9bac247
...
...
@@ -66,11 +66,9 @@ if ($mil->fetch($_GET["id"]) == 0)
dolibarr_fiche_head
(
$head
,
$hselected
,
substr
(
$mil
->
titre
,
0
,
20
));
print_titre
(
$langs
->
trans
(
"Mailing"
));
print
'<table class="border" width="100%">'
;
print
'<tr><td width="20%">'
.
$langs
->
trans
(
"Title"
)
.
'</td><td>'
.
$mil
->
titre
.
'</td></tr>'
;
print
'<tr><td width="20%">'
.
$langs
->
trans
(
"
Mail
Title"
)
.
'</td><td>'
.
$mil
->
titre
.
'</td></tr>'
;
print
'</table>'
;
/*
...
...
This diff is collapsed.
Click to expand it.
htdocs/comm/mailing/fiche.php
+
1
−
3
View file @
a9bac247
...
...
@@ -194,13 +194,11 @@ else
"confirm_approve"
);
}
print_titre
(
"Mailing"
);
print
'<table class="border" width="100%">'
;
print
'<tr><td width="20%">'
.
$langs
->
trans
(
"MailTitle"
)
.
'</td><td colspan="3">'
.
$mil
->
titre
.
'</td></tr>'
;
print
'<tr><td width="20%">'
.
$langs
->
trans
(
"Mail
Sender
"
)
.
'</td><td>'
.
htmlentities
(
$mil
->
email_from
)
.
'</td>'
;
print
'<tr><td width="20%">'
.
$langs
->
trans
(
"Mail
From
"
)
.
'</td><td>'
.
htmlentities
(
$mil
->
email_from
)
.
'</td>'
;
print
'<td>'
.
$langs
->
trans
(
"EMail"
)
.
'</td><td>'
.
htmlentities
(
$mil
->
email_from
)
.
'</td></tr>'
;
//print '<tr><td width="20%">Rponse</td><td>'.htmlentities($mil->email_replyto).'</td></tr>';
...
...
This diff is collapsed.
Click to expand it.
htdocs/comm/mailing/mailing.class.php
+
10
−
7
View file @
a9bac247
<?php
/* Copyright (C) 2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2005 Laurent Destailleur <eldy@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
@@ -20,13 +21,15 @@
*
*/
/** \file htdocs/comm/mailing/mailing.class.php
\brief Fichier de la classe de gestion des mailings
\version $Revision$
*/
/*! \class Mailing
/** \class Mailing
\brief Classe permettant la gestion des mailings
*/
class
Mailing
{
var
$id
;
...
...
@@ -157,7 +160,7 @@ class Mailing
/**
* \brief Valide le mailing
* \param user
id
id de l'utilisateu
r qui valide
* \param user
objet use
r qui valide
*/
function
valid
(
$user
)
{
...
...
@@ -181,7 +184,7 @@ class Mailing
/**
* \brief Approuve le mailing
* \param user
id
id de l'utilisateur qui valid
e
* \param user
objet user qui approuv
e
*/
function
approve
(
$user
)
{
...
...
@@ -204,7 +207,7 @@ class Mailing
/**
* \brief Supprime le mailing
* \param rowid id supprimer
* \param rowid id
du mailing
supprimer
*/
function
delete
(
$rowid
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment