PluginProbe
GamiPress – Gamification plugin to reward points, badges & ranks in WordPress, now with AI / trunk
GamiPress – Gamification plugin to reward points, badges & ranks in WordPress, now with AI vtrunk
8.0.1 8.0.2 8.0.0 7.9.9.7 7.9.9.6 7.9.9.5 7.9.9.4 7.9.9.3 7.9.9.2 7.9.9.1 7.9.9 7.9.8 7.9.7 7.9.6 7.9.5 7.9.4 7.9.3 7.9.2 7.9.1 7.9.0 7.8.9 7.8.8 7.8.7 7.8.6 7.8.5 All 44 releases
gamipress / classes / database.php

database.php in GamiPress – Gamification plugin to reward points, badges & ranks in WordPress, now with AI trunk, at classes/database.php

101 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Database
4 *
5 * @package GamiPress\Classes\Database
6 * @author GamiPress <contact@gamipress.com>, Ruben Garcia <rubengcdev@gmail.com>
7 * @since 1.0.0
8 */
9 // Exit if accessed directly
10 if( !defined( 'ABSPATH' ) ) exit;
11
12 #[AllowDynamicProperties]
13 class GamiPress_Database {
14
15 /**
16 * Posts table name
17 *
18 * @since 1.0.0
19 *
20 * @var string $posts
21 */
22 public $posts = '';
23
24 /**
25 * Post meta table name
26 *
27 * @since 1.0.0
28 *
29 * @var string $postmeta
30 */
31 public $postmeta = '';
32
33 /**
34 * Users table name
35 *
36 * @since 1.0.0
37 *
38 * @var string $users
39 */
40 public $users = '';
41
42 /**
43 * User meta table name
44 *
45 * @since 1.0.0
46 *
47 * @var string $user
48 */
49 public $usermeta = '';
50
51 /**
52 * Logs table name
53 *
54 * @since 1.0.0
55 *
56 * @var string $logs
57 */
58 public $logs = '';
59
60 /**
61 * Logs meta table name
62 *
63 * @since 1.0.0
64 *
65 * @var string $logs_meta
66 */
67 public $logs_meta = '';
68
69 /**
70 * User earnings table name
71 *
72 * @since 1.0.0
73 *
74 * @var string $user_earnings
75 */
76 public $user_earnings = '';
77
78 /**
79 * User earnings meta table name
80 *
81 * @since 1.0.0
82 *
83 * @var string $user_earnings_meta
84 */
85 public $user_earnings_meta = '';
86
87 /**
88 * @since 1.0.0
89 *
90 * @var string $p2p
91 */
92 public $p2p = '';
93
94 /**
95 * @since 1.0.0
96 *
97 * @var string $p2pmeta
98 */
99 public $p2pmeta = '';
100
101 }