camel case

This commit is contained in:
Florian HENRY 2014-05-30 12:01:26 +02:00
parent f87772f3ec
commit 0de66e838c
3 changed files with 4 additions and 4 deletions

View File

@ -457,7 +457,7 @@ if ($object->fetch($id) >= 0)
print '</td>';
//Statut
print '<td class="liste_titre" align="right">';
print $formmailing->select_destinaries_status($search_dest_status,'search_dest_status',1);
print $formmailing->selectDestinariesStatus($search_dest_status,'search_dest_status',1);
print '</td>';
//Search Icon
print '<td class="liste_titre" align="right">';
@ -531,7 +531,7 @@ if ($object->fetch($id) >= 0)
{
print '<td align="center">'.$obj->date_envoi.'</td>';
print '<td align="right" class="nowrap">';
print $object::LibStatutDest($obj->statut,2);
print $object::libStatutDest($obj->statut,2);
print '</td>';
}

View File

@ -529,7 +529,7 @@ class Mailing extends CommonObject
* @param int $mode 0=libelle long, 1=libelle court, 2=Picto + Libelle court, 3=Picto, 4=Picto + Libelle long, 5=Libelle court + Picto
* @return string Label
*/
static public function LibStatutDest($statut,$mode=0)
static public function libStatutDest($statut,$mode=0)
{
global $langs;
$langs->load('mails');

View File

@ -51,7 +51,7 @@ class FormMailing extends Form
* @param number $show_empty show empty option
* @return string HTML select
*/
public function select_destinaries_status($selectedid='',$htmlname='dest_status', $show_empty=0) {
public function selectDestinariesStatus($selectedid='',$htmlname='dest_status', $show_empty=0) {
global $langs;
$langs->load("mails");