configurer_vieux_butineurs.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. /***************************************************************************\
  3. * SPIP, Systeme de publication pour l'internet *
  4. * *
  5. * Copyright (c) 2001-2014 *
  6. * Arnaud Martin, Antoine Pitrou, Philippe Riviere, Emmanuel Saint-James *
  7. * *
  8. * Ce programme est un logiciel libre distribue sous licence GNU/GPL. *
  9. * Pour plus de details voir le fichier COPYING.txt ou l'aide en ligne. *
  10. \***************************************************************************/
  11. if (!defined("_ECRIRE_INC_VERSION")) return;
  12. include_spip('inc/presentation');
  13. function formulaires_configurer_vieux_butineurs_charger_dist(){
  14. $valeurs = array(
  15. 'iecompat' => $GLOBALS['meta']['iecompat']?$GLOBALS['meta']['iecompat']:'non',
  16. );
  17. return $valeurs;
  18. }
  19. function formulaires_configurer_vieux_butineurs_traiter_dist(){
  20. $res = array('editable'=>true);
  21. foreach(array(
  22. "iecompat",
  23. ) as $m)
  24. if (!is_null($v=_request($m)))
  25. ecrire_meta($m, $v);
  26. $res['message_ok'] = _T('config_info_enregistree');
  27. return $res;
  28. }