[SPIP] ~v3.0.20-->v3.0.25
[lhc/web/clavette_www.git] / www / prive / formulaires / configurer_moderniseur.php
1 <?php
2
3 /***************************************************************************\
4 * SPIP, Systeme de publication pour l'internet *
5 * *
6 * Copyright (c) 2001-2016 *
7 * Arnaud Martin, Antoine Pitrou, Philippe Riviere, Emmanuel Saint-James *
8 * *
9 * Ce programme est un logiciel libre distribue sous licence GNU/GPL. *
10 * Pour plus de details voir le fichier COPYING.txt ou l'aide en ligne. *
11 \***************************************************************************/
12
13 if (!defined('_ECRIRE_INC_VERSION')) return;
14 include_spip('inc/presentation');
15
16 function formulaires_configurer_moderniseur_charger_dist(){
17 $valeurs = array(
18 'version_html_max' => html5_permis() ? 'html5' : 'html4',
19 );
20 return $valeurs;
21 }
22
23
24 function formulaires_configurer_moderniseur_traiter_dist(){
25 $res = array('editable'=>true);
26 foreach(array(
27 "version_html_max",
28 ) as $m)
29 if (!is_null($v=_request($m)))
30 ecrire_meta($m, $v=='html5'?'html5':'html4');
31
32 $res['message_ok'] = _T('config_info_enregistree');
33 return $res;
34 }
35