PluginProbe
AutomatorWP – No-Code Workflow Automation, Integration & Webhooks Plugin, now with AI / trunk
AutomatorWP – No-Code Workflow Automation, Integration & Webhooks Plugin, now with AI vtrunk
6.0.1 6.0.0 5.8.6 5.8.5 5.8.4 5.8.3 5.8.2 5.8.1 5.8.0 5.7.9.2 5.7.9.1 5.7.8 5.7.9 5.7.6 5.7.7 5.7.5 5.7.4 5.7.3 5.7.2 5.7.1 trunk 5.6.0 5.6.1 5.6.2 5.6.3 All 32 releases
automatorwp / classes / database.php

database.php in AutomatorWP – No-Code Workflow Automation, Integration & Webhooks Plugin, now with AI trunk, at classes/database.php

122 lines 2.0 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 AutomatorWP\Classes\Database
6 * @author AutomatorWP <contact@automatorwp.com>, Ruben Garcia <rubengcdev@gmail.com>
7 * @since 1.0.0
8 */
9 // Exit if accessed directly
10 if( !defined( 'ABSPATH' ) ) exit;
11
12 class AutomatorWP_Database {
13
14 /**
15 * Posts table name
16 *
17 * @since 1.0.0
18 *
19 * @var string $posts
20 */
21 public $posts = '';
22
23 /**
24 * Post meta table name
25 *
26 * @since 1.0.0
27 *
28 * @var string $postmeta
29 */
30 public $postmeta = '';
31
32 /**
33 * Users table name
34 *
35 * @since 1.0.0
36 *
37 * @var string $users
38 */
39 public $users = '';
40
41 /**
42 * User meta table name
43 *
44 * @since 1.0.0
45 *
46 * @var string $user
47 */
48 public $usermeta = '';
49
50 /**
51 * Automations table name
52 *
53 * @since 1.0.0
54 *
55 * @var string $automations
56 */
57 public $automations = '';
58
59 /**
60 * Automations meta table name
61 *
62 * @since 1.0.0
63 *
64 * @var string $automations_meta
65 */
66 public $automations_meta = '';
67
68 /**
69 * Triggers table name
70 *
71 * @since 1.0.0
72 *
73 * @var string $triggers
74 */
75 public $triggers = '';
76
77 /**
78 * Triggers meta table name
79 *
80 * @since 1.0.0
81 *
82 * @var string $triggers_meta
83 */
84 public $triggers_meta = '';
85
86 /**
87 * Actions table name
88 *
89 * @since 1.0.0
90 *
91 * @var string $actions
92 */
93 public $actions = '';
94
95 /**
96 * Actions meta table name
97 *
98 * @since 1.0.0
99 *
100 * @var string $actions_meta
101 */
102 public $actions_meta = '';
103
104 /**
105 * Logs table name
106 *
107 * @since 1.0.0
108 *
109 * @var string $logs
110 */
111 public $logs = '';
112
113 /**
114 * Logs meta table name
115 *
116 * @since 1.0.0
117 *
118 * @var string $logs_meta
119 */
120 public $logs_meta = '';
121
122 }