You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
449 B
23 lines
449 B
2 years ago
|
<?php
|
||
|
/**
|
||
|
* Options au chargement du plugin Intertitres H3
|
||
|
*
|
||
|
* @plugin Intertitres H3
|
||
|
* @copyright 2021
|
||
|
* @author spip team
|
||
|
* @licence GNU/GPL
|
||
|
* @package SPIP\Historique_spip32_h3\Options
|
||
|
*/
|
||
|
|
||
|
if (!defined('_ECRIRE_INC_VERSION')) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
if (!isset($GLOBALS['debut_intertitre'])) {
|
||
|
$GLOBALS['debut_intertitre'] = '<h3 class="spip">';
|
||
|
}
|
||
|
if (!isset($GLOBALS['fin_intertitre'])) {
|
||
|
$GLOBALS['fin_intertitre'] = '</h3>';
|
||
|
}
|
||
|
|