1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pluxml_ynh.git synced 2024-09-03 20:16:02 +02:00
pluxml_ynh/sources/update/update_4.2.php

26 lines
489 B
PHP
Raw Normal View History

2014-11-12 22:01:48 +01:00
<?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
}
}
?>