8147e5791a
FossilOrigin-Name: 4a86c1b18ea6bef9a5b1ba038e8321d97e2e7657c5a813d4e1bed29116c24695
21 lines
524 B
PHP
21 lines
524 B
PHP
<?php
|
|
namespace Garradin;
|
|
use Garradin\Entities\Files\File;
|
|
|
|
// supprimer les fichiers créés
|
|
|
|
// signature par défaut
|
|
$default_signature_file = \Garradin\Files\Files::get('skel/plugin/recusfiscaux/default_signature.png');
|
|
if (null !== $default_signature_file) {
|
|
$default_signature_file->delete();
|
|
}
|
|
|
|
// signature réelle
|
|
$signature = $plugin->getConfig('signature');
|
|
if (null !== $signature) {
|
|
$sig_file = \Garradin\Files\Files::get($signature);
|
|
if (null !== $sig_file) {
|
|
$sig_file->delete();
|
|
}
|
|
}
|