-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcron.php
83 lines (52 loc) · 1.64 KB
/
cron.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?php
/**
* VFront Cron
* @package VFront
* @author M.Marcello Verona
* @copyright 2007-2010 M.Marcello Verona
* @version 0.96 $Id: cron.php 180 2008-12-25 06:37:32Z marciuz $
* @license http://www.gnu.org/licenses/gpl.html GNU Public License
*
*/
require("./inc/conn.php");
// Funzioni di CRON
// manutenzione delle cartelle temporanee
function cron_clean_dir($dir, $tieni_file_entro_gg=0){
$gg=(60*60*24);
$tempo_validita=$gg*$tieni_file_entro_gg;
if (is_dir($dir)) {
if ($dh = opendir($dir)) {
while (($file = readdir($dh)) !== false) {
$data_file=filemtime($dir .$file);
if((time()-$tempo_validita)>$data_file && $file!='.' && $file!='..'){
@unlink($dir .$file);
}
}
closedir($dh);
}
}
}
/**
* Funzione di cancellazione dei file presenti nella cartella /html
* Si tratta delle tendine richiamate dinamicamente dalle schede con i record delle tabelle collegate 1 a molti
* E' utile tenere per un po' di tempo questi file, in modo che sia il server che il client possano risparmiare
* lavoro, di default vengono cancellati quelli più vecchi di trenta giorni.
*
* @param int $tieni_file_entro_gg
*/
function cron_clean_html($gg=0){
$dir=FRONT_REALPATH."/files/html/";
cron_clean_dir($dir,$gg);
}
function cron_clean_tmp($gg=0){
$dir=_PATH_TMP."/";
cron_clean_dir($dir,$gg);
}
function cron_clean_files_tmp($gg=0){
$dir=FRONT_REALPATH."/";
cron_clean_dir($dir,$gg);
}
$DAYS_MIN = (isset($_GET['clearall'])) ? 0 : (int) $_SESSION['VF_VARS']['cron_days_min'];
cron_clean_html($DAYS_MIN);
cron_clean_tmp($DAYS_MIN);
cron_clean_files_tmp($DAYS_MIN);