- LSformElement_maildir : Ajout de messages lors des réussites de

création/modification/suppression
This commit is contained in:
Benjamin Renard 2009-01-22 14:20:36 +00:00
parent c6cf4b46a1
commit 99a8de6715

View file

@ -139,17 +139,29 @@ class LSformElement_maildir extends LSformElement_text {
if ($this -> params['html_options']['archiveNameFormat']) {
$newname=getFData($this -> params['html_options']['archiveNameFormat'],$this -> _toDo['old']);
if ($newname) {
return renameMaildirByFTP($this -> _toDo['old'],$newname);
if (renameMaildirByFTP($this -> _toDo['old'],$newname)) {
$GLOBALS['LSsession'] -> addInfo("La boîte mail a été archivée.");
return true;
}
return;
}
LSdebug($this -> name." - LSformElement_maildir->toDo() : Nom d'archivage incorrect.");
return;
}
break;
case 'modify':
return renameMaildirByFTP($this -> _toDo['old'],$this -> _toDo['new']);
if (renameMaildirByFTP($this -> _toDo['old'],$this -> _toDo['new'])) {
$GLOBALS['LSsession'] -> addInfo("La boîte mail a été déplacée.");
return true;
}
return;
break;
case 'create':
return createMaildirByFTP(null,$this -> _toDo['new']);
if (createMaildirByFTP(null,$this -> _toDo['new'])) {
$GLOBALS['LSsession'] -> addInfo("La boîte mail a été créée.");
return true;
}
return;
break;
default:
LSdebug($this -> name.' - LSformElement_maildir->toDo() : Action inconnu.');