| 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 |
|