PluginProbe
WP Data Access – App Builder for Tables, Forms, Charts, Maps & Dashboards / 5.5.84
WP Data Access – App Builder for Tables, Forms, Charts, Maps & Dashboards v5.5.84
5.5.84 5.5.83 5.5.82 5.5.81 5.5.80 5.5.79 5.5.77 5.5.76 5.5.75 5.5.73 5.5.72 5.5.22 5.5.23 5.5.29 5.5.3 5.5.31 5.5.32 5.5.34 5.5.35 5.5.36 5.5.37 5.5.4 5.5.40 5.5.41 5.5.42 All 160 releases
wp-data-access / WPDataAccess / Query_Builder / WPDA_Query_Builder_Scheduler.php

WPDA_Query_Builder_Scheduler.php in WP Data Access – App Builder for Tables, Forms, Charts, Maps & Dashboards 5.5.84, at WPDataAccess/Query_Builder/WPDA_Query_Builder_Scheduler.php

48 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace WPDataAccess\Query_Builder;
4
5 use WPDataAccess\Connection\WPDADB;
6 use WPDataAccess\Utilities\WPDA_Mail;
7 use WPDataAccess\WPDA;
8 class WPDA_Query_Builder_Scheduler {
9 const SCHEDULER_HOOK_NAME = 'wpda_run_scheduled_sql';
10
11 public static function wpda_cron_events() {
12 return array();
13 }
14
15 private static function queryDecode( $sql ) {
16 return '';
17 }
18
19 public static function run_scheduled_sql( $args ) {
20 }
21
22 private static function notify_multiple_queries( $tabs, $params ) {
23 }
24
25 private static function attach_csv( $response ) {
26 return '';
27 }
28
29 private static function attach_json( $response ) {
30 return '';
31 }
32
33 private static function attach_xml( $response ) {
34 return '';
35 }
36
37 private static function notify_single_query( $response, $params ) {
38 }
39
40 private static function mail( $to, $message, $attachments = array() ) {
41 }
42
43 public static function get_scheduled_sql( $name, $access, $params ) {
44 return array();
45 }
46
47 }
48