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();
|
|
}
|
|
}
|