[SPIP] ~v3.0.20-->v3.0.25
[lhc/web/clavette_www.git] / www / plugins-dist / dump / exec / base_restaurer.php
1 <?php
2
3 /***************************************************************************\
4 * SPIP, Systeme de publication pour l'internet *
5 * *
6 * Copyright (c) 2001-2016 *
7 * Arnaud Martin, Antoine Pitrou, Philippe Riviere, Emmanuel Saint-James *
8 * *
9 * Ce programme est un logiciel libre distribue sous licence GNU/GPL. *
10 * Pour plus de details voir le fichier COPYING.txt ou l'aide en ligne. *
11 \***************************************************************************/
12
13 if (!defined('_ECRIRE_INC_VERSION')) return;
14
15 /**
16 * Finir une restauration interrompue par logout
17 */
18 function exec_base_restaurer_dist(){
19
20 include_spip('base/dump');
21 $status_file = base_dump_meta_name(0)."_restauration";
22 $restaurer = charger_fonction("restaurer","action");
23 $restaurer($status_file);
24
25 }
26
27 ?>