-
Notifications
You must be signed in to change notification settings - Fork 1
/
wp-metadata-timestamp.php
53 lines (42 loc) · 1.53 KB
/
wp-metadata-timestamp.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
<?php
/*
Plugin Name: Znacznik czasowy dla metadanych oraz opcji
Version: 1.0.0
Description: Zapisuje w bazie datę ostatniej edycji metadanych takich jak własne pola oraz ustawień Wordpress, zapis daty odbywa się na warstwie silnika bazodanowego (MySQL).
Author: Sebatian Bort
*/
class WP_Metadata_Timestamp {
const table_col = 'last_update';
private $tables = [
'postmeta',
'termmeta',
'usermeta',
'options'
];
public function __construct() {
register_activation_hook(__FILE__, [$this, 'add_timestamp_cols']);
register_deactivation_hook(__FILE__, [$this, 'remove_timestamp_cols']);
}
public function add_timestamp_cols() {
global $wpdb;
foreach($this->tables AS $table) {
$sql = sprintf(
'ALTER TABLE `%s%s` ADD `%s` DATETIME on update CURRENT_TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP;',
$wpdb->prefix, $table, self::table_col
);
$wpdb->query($sql);
}
}
public function remove_timestamp_cols() {
global $wpdb;
foreach($this->tables AS $table) {
$sql = sprintf(
'ALTER TABLE `%s%s` DROP `%s`',
$wpdb->prefix, $table, self::table_col
);
$wpdb->query($sql);
}
}
}
new WP_Metadata_Timestamp();
?>