27 lines
429 B
PHP
27 lines
429 B
PHP
<?php
|
|
/**
|
|
* Options au chargement du plugin Traitement corpus web
|
|
*
|
|
* @plugin Traitement corpus web
|
|
* @copyright 2021
|
|
* @author gamuza
|
|
* @licence GNU/GPL
|
|
* @package SPIP\Corpus\Options
|
|
*/
|
|
|
|
if (!defined('_ECRIRE_INC_VERSION')) {
|
|
return;
|
|
}
|
|
|
|
|
|
if (!isset($GLOBALS['z_blocs'])){
|
|
$GLOBALS['z_blocs'] = array(
|
|
'content',
|
|
'aside',
|
|
'extra',
|
|
'head',
|
|
'head_js',
|
|
'header',
|
|
'footer',
|
|
'breadcrumb');
|
|
}
|