cms.sftp-create-csv-salaries.php 477 B

123456789101112131415161718
  1. <?php
  2. if(core::ifPost("from")){
  3. salaries::dataForSFTP();
  4. historique::recRef("/proweb-export-csv.html");
  5. historique::add(array(
  6. "idType" => historique::getIdRef("ACTION"),
  7. "idUser" => session::getId(),
  8. "idPage" => historique::getIdRef("/proweb-export-csv.html"),
  9. "log" => "Création du CSV"
  10. ));
  11. alert::recSuccess("Le CSV à envoyer à ProWeb vient d'être créé.");
  12. }
  13. header("Location: /proweb-export-csv.html");
  14. exit();