wip: ajout possibilite vidanger le localstorage
This commit is contained in:
parent
144aff6164
commit
2c7c5c8f4b
2 changed files with 16 additions and 0 deletions
|
@ -118,3 +118,13 @@ function gamutable_recharger_tableau($id_objet = 9999999999, $num = null):string
|
||||||
EOJS;
|
EOJS;
|
||||||
return $html;
|
return $html;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function gamutable_vider_localstorage():int {
|
||||||
|
$version_prod = (int) lire_config('gamutable/version_stockage', 1);
|
||||||
|
$version_demandee = (int) ($GLOBALS['gamutable_version_stockage'] ?? 1);
|
||||||
|
if ($version_demandee > $version_prod) {
|
||||||
|
ecrire_config('gamutable/version_stockage', $version_demandee);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
|
@ -25,6 +25,9 @@
|
||||||
[(#ENV{fichierVueBloc}|oui)
|
[(#ENV{fichierVueBloc}|oui)
|
||||||
[(#SET{htmlvuebloc,#INCLURE{fond=#ENV{fichierVueBloc}}|replace{'"',"'"}})]
|
[(#SET{htmlvuebloc,#INCLURE{fond=#ENV{fichierVueBloc}}|replace{'"',"'"}})]
|
||||||
]
|
]
|
||||||
|
|
||||||
|
#SET{vider_localstorage,#NULL|gamutable_vider_localstorage}
|
||||||
|
|
||||||
<div id="vueGamutable">
|
<div id="vueGamutable">
|
||||||
<BOUCLE_un(CONDITION){si #ENV{apiuri}|oui}>
|
<BOUCLE_un(CONDITION){si #ENV{apiuri}|oui}>
|
||||||
<div class="container_un">
|
<div class="container_un">
|
||||||
|
@ -53,6 +56,7 @@
|
||||||
trier="[(#ENV{trier})]"
|
trier="[(#ENV{trier})]"
|
||||||
langpdf="[(#ENV{langpdf})]"
|
langpdf="[(#ENV{langpdf})]"
|
||||||
:id_auteur="[(#SESSION{id_auteur}|intval)]"
|
:id_auteur="[(#SESSION{id_auteur}|intval)]"
|
||||||
|
:vider_localstorage="#GET{vider_localstorage}"
|
||||||
></gamu-table>
|
></gamu-table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -90,6 +94,7 @@
|
||||||
trier="[(#ENV{trier_deux})]"
|
trier="[(#ENV{trier_deux})]"
|
||||||
langpdf="[(#ENV{langpdf})]"
|
langpdf="[(#ENV{langpdf})]"
|
||||||
:id_auteur="[(#SESSION{id_auteur}|intval)]"
|
:id_auteur="[(#SESSION{id_auteur}|intval)]"
|
||||||
|
:vider_localstorage="#GET{vider_localstorage}"
|
||||||
></gamu-table>
|
></gamu-table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -102,6 +107,7 @@
|
||||||
|
|
||||||
<script src="[(#CHEMIN{js/localforage.min.js}|timestamp)]" type="text/javascript"></script>
|
<script src="[(#CHEMIN{js/localforage.min.js}|timestamp)]" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
[(#CONFIG{gamutable/charger_modalbox}|=={oui}|oui)
|
[(#CONFIG{gamutable/charger_modalbox}|=={oui}|oui)
|
||||||
<script src="[(#CHEMIN{js/gamubox.js}|timestamp)]" type="text/javascript"></script>
|
<script src="[(#CHEMIN{js/gamubox.js}|timestamp)]" type="text/javascript"></script>
|
||||||
]
|
]
|
||||||
|
|
Loading…
Add table
Reference in a new issue