data.php 309B

12345678910111213141516171819202122
  1. <?php
  2. include_once(dirname(__DIR__)."../models/data.class.php");
  3. function data()
  4. {
  5. set("title", "Titre");
  6. return html("data.html.php", "layout.html.php");
  7. }
  8. function data_extract()
  9. {
  10. header("Content-Type: text/csv");
  11. echo Data::extract();
  12. }
  13. function alter_data()
  14. {
  15. // TODO
  16. }