@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | $res['message_ok'] = _T('info_modification_enregistree'); |
| 101 | 101 | if ($retour) { |
| 102 | 102 | if (strncmp($retour, 'javascript:', 11) == 0) { |
| 103 | - $res['message_ok'] .= '<script type="text/javascript">/*<![CDATA[*/' . substr($retour, 11) . '/*]]>*/</script>'; |
|
| 103 | + $res['message_ok'] .= '<script type="text/javascript">/*<![CDATA[*/'.substr($retour, 11).'/*]]>*/</script>'; |
|
| 104 | 104 | $res['editable'] = true; |
| 105 | 105 | } else { |
| 106 | 106 | $res['redirect'] = parametre_url($retour, $id_table_objet, $id); |
@@ -140,7 +140,7 @@ discard block |
||
| 140 | 140 | if (!isset($erreurs[$champ])) { |
| 141 | 141 | $erreurs[$champ] = ''; |
| 142 | 142 | } |
| 143 | - $erreurs[$champ] .= _T('alerte_modif_info_concourante') . "<br /><textarea readonly='readonly' class='forml'>" . entites_html($conflit['base']) . '</textarea>'; |
|
| 143 | + $erreurs[$champ] .= _T('alerte_modif_info_concourante')."<br /><textarea readonly='readonly' class='forml'>".entites_html($conflit['base']).'</textarea>'; |
|
| 144 | 144 | } |
| 145 | 145 | } |
| 146 | 146 | } |
@@ -215,7 +215,7 @@ discard block |
||
| 215 | 215 | // on accepte pas une fonction de config inconnue si elle vient d'un modele |
| 216 | 216 | if ($config_fonc |
| 217 | 217 | and !in_array($config_fonc, ['articles_edit_config', 'rubriques_edit_config', 'auteurs_edit_config']) |
| 218 | - and $config_fonc !== $table_objet . '_edit_config') { |
|
| 218 | + and $config_fonc !== $table_objet.'_edit_config') { |
|
| 219 | 219 | if ($args = test_formulaire_inclus_par_modele() |
| 220 | 220 | and in_array($config_fonc, $args)) { |
| 221 | 221 | $config_fonc = ''; |
@@ -227,12 +227,12 @@ discard block |
||
| 227 | 227 | // Appel direct dans un squelette |
| 228 | 228 | if (!$row) { |
| 229 | 229 | if (!$new or $lier_trad) { |
| 230 | - if ($select = charger_fonction('precharger_' . $type, 'inc', true)) { |
|
| 230 | + if ($select = charger_fonction('precharger_'.$type, 'inc', true)) { |
|
| 231 | 231 | $row = $select($id, $id_parent, $lier_trad); |
| 232 | 232 | // si on a une fonction precharger, elle pu faire un reglage de langue |
| 233 | 233 | $lang_default = (!empty($row['lang']) ? $row['lang'] : null); |
| 234 | 234 | } else { |
| 235 | - $row = sql_fetsel('*', $table_objet_sql, $id_table_objet . '=' . intval($id)); |
|
| 235 | + $row = sql_fetsel('*', $table_objet_sql, $id_table_objet.'='.intval($id)); |
|
| 236 | 236 | } |
| 237 | 237 | if (!$new) { |
| 238 | 238 | $md5 = controles_md5($row); |
@@ -281,7 +281,7 @@ discard block |
||
| 281 | 281 | if ($config_fonc) { |
| 282 | 282 | $contexte['config'] = $config = $config_fonc($contexte); |
| 283 | 283 | if (!$lang_default) { |
| 284 | - $lang_default = $config['langue'] ?? session_get('lang') ; |
|
| 284 | + $lang_default = $config['langue'] ?? session_get('lang'); |
|
| 285 | 285 | } |
| 286 | 286 | } |
| 287 | 287 | $config = $config + array( |
@@ -305,13 +305,12 @@ discard block |
||
| 305 | 305 | unset($contexte['lang']); |
| 306 | 306 | } |
| 307 | 307 | |
| 308 | - $contexte['_hidden'] = "<input type='hidden' name='editer_$type' value='oui' />\n" . |
|
| 309 | - (!$lier_trad ? '' : |
|
| 310 | - ("\n<input type='hidden' name='lier_trad' value='" . |
|
| 311 | - $lier_trad . |
|
| 312 | - "' />" . |
|
| 313 | - "\n<input type='hidden' name='changer_lang' value='" . |
|
| 314 | - $lang_default . |
|
| 308 | + $contexte['_hidden'] = "<input type='hidden' name='editer_$type' value='oui' />\n". |
|
| 309 | + (!$lier_trad ? '' : ("\n<input type='hidden' name='lier_trad' value='". |
|
| 310 | + $lier_trad. |
|
| 311 | + "' />". |
|
| 312 | + "\n<input type='hidden' name='changer_lang' value='". |
|
| 313 | + $lang_default. |
|
| 315 | 314 | "' />")) |
| 316 | 315 | . $hidden |
| 317 | 316 | . (isset($md5) ? $md5 : ''); |
@@ -326,8 +325,8 @@ discard block |
||
| 326 | 325 | |
| 327 | 326 | // et in fine placer l'autorisation |
| 328 | 327 | include_spip('inc/autoriser'); |
| 329 | - if (intval($id)){ |
|
| 330 | - if (!autoriser('modifier', $type, intval($id))){ |
|
| 328 | + if (intval($id)) { |
|
| 329 | + if (!autoriser('modifier', $type, intval($id))) { |
|
| 331 | 330 | $valeurs['editable'] = ''; |
| 332 | 331 | } |
| 333 | 332 | } |
@@ -351,14 +350,14 @@ discard block |
||
| 351 | 350 | $aider = charger_fonction('aider', 'inc'); |
| 352 | 351 | if (strlen($texte) > 28 * 1024) { |
| 353 | 352 | $texte = str_replace("\r\n", "\n", $texte); |
| 354 | - $pos = strpos($texte, "\n\n", 28 * 1024); // coupe para > 28 ko |
|
| 353 | + $pos = strpos($texte, "\n\n", 28 * 1024); // coupe para > 28 ko |
|
| 355 | 354 | if ($pos > 0 and $pos < 32 * 1024) { |
| 356 | - $debut = substr($texte, 0, $pos) . "\n\n<!--SPIP-->\n"; |
|
| 355 | + $debut = substr($texte, 0, $pos)."\n\n<!--SPIP-->\n"; |
|
| 357 | 356 | $suite = substr($texte, $pos + 2); |
| 358 | 357 | } else { |
| 359 | - $pos = strpos($texte, ' ', 28 * 1024); // sinon coupe espace |
|
| 358 | + $pos = strpos($texte, ' ', 28 * 1024); // sinon coupe espace |
|
| 360 | 359 | if (!($pos > 0 and $pos < 32 * 1024)) { |
| 361 | - $pos = 28 * 1024; // au pire (pas d'espace trouv'e) |
|
| 360 | + $pos = 28 * 1024; // au pire (pas d'espace trouv'e) |
|
| 362 | 361 | $decalage = 0; // si y'a pas d'espace, il ne faut pas perdre le caract`ere |
| 363 | 362 | } else { |
| 364 | 363 | $decalage = 1; |
@@ -388,13 +387,13 @@ discard block |
||
| 388 | 387 | } |
| 389 | 388 | |
| 390 | 389 | include_spip('inc/barre'); |
| 391 | - $textes_supplement = "<br /><span style='color: red'>" . _T('info_texte_long') . "</span>\n"; |
|
| 390 | + $textes_supplement = "<br /><span style='color: red'>"._T('info_texte_long')."</span>\n"; |
|
| 392 | 391 | $nombre = 0; |
| 393 | 392 | |
| 394 | 393 | while (strlen($texte) > 29 * 1024) { |
| 395 | 394 | $nombre++; |
| 396 | 395 | list($texte1, $texte) = coupe_trop_long($texte); |
| 397 | - $textes_supplement .= '<br />' . |
|
| 396 | + $textes_supplement .= '<br />'. |
|
| 398 | 397 | "<textarea id='texte$nombre' name='texte_plus[$nombre]'$att_text>$texte1</textarea>\n"; |
| 399 | 398 | } |
| 400 | 399 | |
@@ -482,7 +481,7 @@ discard block |
||
| 482 | 481 | $ctr = array(); |
| 483 | 482 | foreach ($data as $key => $val) { |
| 484 | 483 | $m = md5($val); |
| 485 | - $k = $prefixe . $key; |
|
| 484 | + $k = $prefixe.$key; |
|
| 486 | 485 | |
| 487 | 486 | switch ($format) { |
| 488 | 487 | case 'html': |
@@ -495,7 +494,7 @@ discard block |
||
| 495 | 494 | } |
| 496 | 495 | |
| 497 | 496 | if ($format == 'html') { |
| 498 | - return "\n\n<!-- controles md5 -->\n" . join("\n", $ctr) . "\n\n"; |
|
| 497 | + return "\n\n<!-- controles md5 -->\n".join("\n", $ctr)."\n\n"; |
|
| 499 | 498 | } else { |
| 500 | 499 | return $ctr; |
| 501 | 500 | } |
@@ -646,7 +645,7 @@ discard block |
||
| 646 | 645 | // On elimine les donnees non modifiees par le formulaire (mais |
| 647 | 646 | // potentiellement modifiees entre temps par un autre utilisateur) |
| 648 | 647 | foreach ($champs as $key => $val) { |
| 649 | - if (isset($ctr[$prefix . $key]) and $m = $ctr[$prefix . $key]) { |
|
| 648 | + if (isset($ctr[$prefix.$key]) and $m = $ctr[$prefix.$key]) { |
|
| 650 | 649 | if (is_scalar($val) and $m == md5($val)) { |
| 651 | 650 | unset($champs[$key]); |
| 652 | 651 | } |
@@ -675,7 +674,7 @@ discard block |
||
| 675 | 674 | // de conflit. |
| 676 | 675 | $ctrh = $ctrq = $conflits = array(); |
| 677 | 676 | foreach (array_keys($champs) as $key) { |
| 678 | - if (isset($ctr[$prefix . $key]) and $m = $ctr[$prefix . $key]) { |
|
| 677 | + if (isset($ctr[$prefix.$key]) and $m = $ctr[$prefix.$key]) { |
|
| 679 | 678 | $ctrh[$key] = $m; |
| 680 | 679 | $ctrq[] = $key; |
| 681 | 680 | } |
@@ -708,9 +707,9 @@ discard block |
||
| 708 | 707 | */ |
| 709 | 708 | function display_conflit_champ($x) { |
| 710 | 709 | if (strstr($x, "\n") or strlen($x) > 80) { |
| 711 | - return "<textarea style='width:99%; height:10em;'>" . entites_html($x) . "</textarea>\n"; |
|
| 710 | + return "<textarea style='width:99%; height:10em;'>".entites_html($x)."</textarea>\n"; |
|
| 712 | 711 | } else { |
| 713 | - return "<input type='text' size='40' style='width:99%' value=\"" . entites_html($x) . "\" />\n"; |
|
| 712 | + return "<input type='text' size='40' style='width:99%' value=\"".entites_html($x)."\" />\n"; |
|
| 714 | 713 | } |
| 715 | 714 | } |
| 716 | 715 | |
@@ -750,11 +749,11 @@ discard block |
||
| 750 | 749 | ) : $champ; |
| 751 | 750 | |
| 752 | 751 | $diffs[] = "<h2>$titre</h2>\n" |
| 753 | - . '<h3>' . _T('info_conflit_edition_differences') . "</h3>\n" |
|
| 754 | - . "<div style='max-height:8em; overflow: auto; width:99%;'>" . $d . "</div>\n" |
|
| 755 | - . '<h4>' . _T('info_conflit_edition_votre_version') . '</h4>' |
|
| 752 | + . '<h3>'._T('info_conflit_edition_differences')."</h3>\n" |
|
| 753 | + . "<div style='max-height:8em; overflow: auto; width:99%;'>".$d."</div>\n" |
|
| 754 | + . '<h4>'._T('info_conflit_edition_votre_version').'</h4>' |
|
| 756 | 755 | . display_conflit_champ($a['post']) |
| 757 | - . '<h4>' . _T('info_conflit_edition_version_enregistree') . '</h4>' |
|
| 756 | + . '<h4>'._T('info_conflit_edition_version_enregistree').'</h4>' |
|
| 758 | 757 | . display_conflit_champ($base); |
| 759 | 758 | } |
| 760 | 759 | |
@@ -762,16 +761,16 @@ discard block |
||
| 762 | 761 | $id = uniqid(rand()); |
| 763 | 762 | $redirect = "<form action='$redirect' method='get' |
| 764 | 763 | id='$id' |
| 765 | - style='float:" . $GLOBALS['spip_lang_right'] . "; margin-top:2em;'>\n" |
|
| 764 | + style='float:".$GLOBALS['spip_lang_right']."; margin-top:2em;'>\n" |
|
| 766 | 765 | . form_hidden($redirect) |
| 767 | - . "<input type='submit' value='" . _T('icone_retour') . "' /> |
|
| 766 | + . "<input type='submit' value='"._T('icone_retour')."' /> |
|
| 768 | 767 | </form>\n"; |
| 769 | 768 | |
| 770 | 769 | // pour les documents, on est probablement en ajax : il faut ajaxer |
| 771 | 770 | if (_AJAX) { |
| 772 | 771 | $redirect .= '<script type="text/javascript">' |
| 773 | - . 'setTimeout(function(){$("#' . $id . '") |
|
| 774 | - .ajaxForm({target:$("#' . $id . '").parent()}); |
|
| 772 | + . 'setTimeout(function(){$("#'.$id.'") |
|
| 773 | + .ajaxForm({target:$("#' . $id.'").parent()}); |
|
| 775 | 774 | }, 200);' |
| 776 | 775 | . "</script>\n"; |
| 777 | 776 | } |
@@ -790,9 +789,9 @@ discard block |
||
| 790 | 789 | .diff-para-deplace .diff-supprime { background: #ffb8b8; border: 1px solid #808080; } |
| 791 | 790 | .diff-para-deplace .diff-deplace { background: #b8b8ff; border: 1px solid #808080; } |
| 792 | 791 | </style>' |
| 793 | - . '<p>' . _T('info_conflit_edition_avis_non_sauvegarde') . '</p>' |
|
| 794 | - . '<p>' . _T('texte_conflit_edition_correction') . '</p>' |
|
| 795 | - . "<div style='text-align:" . $GLOBALS['spip_lang_left'] . ";'>" |
|
| 792 | + . '<p>'._T('info_conflit_edition_avis_non_sauvegarde').'</p>' |
|
| 793 | + . '<p>'._T('texte_conflit_edition_correction').'</p>' |
|
| 794 | + . "<div style='text-align:".$GLOBALS['spip_lang_left'].";'>" |
|
| 796 | 795 | . join("\n", $diffs) |
| 797 | 796 | . "</div>\n" |
| 798 | 797 | |