45 lines
1.1 KiB
PHP
45 lines
1.1 KiB
PHP
|
<?php
|
||
|
if (!defined("_ECRIRE_INC_VERSION")) return;
|
||
|
|
||
|
include_spip('inc/meta');
|
||
|
|
||
|
// Installation et mise à jour sur modele sjcycle
|
||
|
function baz_april_upgrade($nom_meta_version_base, $version_cible) {
|
||
|
|
||
|
// Création du tableau des mises à jour.
|
||
|
$maj = array();
|
||
|
|
||
|
$config_fdr = array(
|
||
|
'titre' => 'Manuel du site'
|
||
|
);
|
||
|
$config_crayons = array (
|
||
|
'barretypo' => 'on',
|
||
|
'msgAbandon' => 'on',
|
||
|
'clickhide' => 'on'
|
||
|
);
|
||
|
$config_compositions = array(
|
||
|
'masquer_formulaire' => 'oui'
|
||
|
);
|
||
|
$config_baz_april = array(
|
||
|
'afficherauteurs' => 'non'
|
||
|
);
|
||
|
// Tableau de la configuration par défaut
|
||
|
$maj['create'] = array(
|
||
|
array('ecrire_config', 'feuillederoute', $config_fdr),
|
||
|
array('ecrire_config', 'crayons', $config_crayons),
|
||
|
array('ecrire_config', 'compositions', $config_compositions),
|
||
|
array('ecrire_config', 'baz_april', $config_baz_april),
|
||
|
array('ecrire_config', 'version_html_max', 'html5'),
|
||
|
);
|
||
|
|
||
|
// Maj du plugin.
|
||
|
include_spip('base/upgrade');
|
||
|
maj_plugin($nom_meta_version_base, $version_cible, $maj);
|
||
|
}
|
||
|
|
||
|
// Désinstallation
|
||
|
function baz_april_vider_tables($nom_meta_version_base) {
|
||
|
effacer_meta('baz');
|
||
|
effacer_meta($nom_meta_version_base);
|
||
|
}
|