PluginProbe
Statify / 1.4.1
Statify v1.4.1
2.0.2 2.0.1 trunk 0.7 0.8 0.9 1.0 1.2.8 1.3.0 1.4.0 1.4.1 1.4.2 1.4.3 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.6.0 1.6.1 1.6.2 1.6.3 1.7.0 1.7.1 1.7.2 All 32 releases
statify / inc / statify_cron.class.php

statify_cron.class.php in Statify 1.4.1, at inc/statify_cron.class.php

43 lines 539 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3
4 /* Quit */
5 defined('ABSPATH') OR exit;
6
7
8 /**
9 * Statify_Cron
10 *
11 * @since 1.4.0
12 */
13
14 class Statify_Cron extends Statify
15 {
16
17
18 /**
19 * Cleanup obsolete DB values
20 *
21 * @since 0.3.0
22 * @change 1.4.0
23 */
24
25 public static function cleanup_data()
26 {
27 /* Global */
28 global $wpdb;
29
30 /* Remove items */
31 $wpdb->query(
32 $wpdb->prepare(
33 "DELETE FROM `$wpdb->statify` WHERE created <= SUBDATE(CURDATE(), %d)",
34 (int)self::$_options['days']
35 )
36 );
37
38 /* Optimize DB */
39 $wpdb->query(
40 "OPTIMIZE TABLE `$wpdb->statify`"
41 );
42 }
43 }