You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
612 B

<?php
namespace App\Controllers;
use CodeIgniter\Controller;
class TestDeadline extends Controller
{
public function index()
{
// Charger le helper qui contient ta fonction
helper('alerts'); // si ton fichier s'appelle alerts_helper.php
// 🔹 Supprimer le cache 24h pour forcer l'exécution
$cacheFile = WRITEPATH . 'cache/check_deadline_last_run.txt';
if (file_exists($cacheFile)) {
unlink($cacheFile);
}
// Lancer la vérification
checkDeadlineAlerts();
echo "✅ Test de l'envoi d'alertes terminé.";
}
}