mirror of
https://github.com/YunoHost-Apps/pluxml_ynh.git
synced 2024-09-03 20:16:02 +02:00
26 lines
No EOL
489 B
PHP
26 lines
No EOL
489 B
PHP
<?php
|
|
/**
|
|
* Classe de mise a jour pour PluXml version 4.2
|
|
*
|
|
* @package PLX
|
|
* @author Stephane F
|
|
**/
|
|
class update_4_2 extends plxUpdate{
|
|
|
|
function step1() {
|
|
|
|
echo L_UPDATE_UPDATE_PARAMETERS_FILE."<br />";
|
|
|
|
$new_parameters = array(
|
|
'clef' => null,
|
|
'miniatures_l' => '200',
|
|
'miniatures_h' => '100',
|
|
'tri_coms' => 'asc',
|
|
'style_mobile' => 'mobile.defaut'
|
|
);
|
|
$this->updateParameters($new_parameters);
|
|
return true; # pas d'erreurs
|
|
}
|
|
|
|
}
|
|
?>
|