public/class-yikes-inc-easy-mailchimp-extender-public.php 1 location
|
@@ 118-124 (lines=7) @@
|
| 115 |
|
* |
| 116 |
|
* @since 6.0.0 |
| 117 |
|
*/ |
| 118 |
|
public function load_error_logging_class() { |
| 119 |
|
if( get_option( 'yikes-mailchimp-debug-status' , '' ) == '1' ) { |
| 120 |
|
// if error logging is enabled we should include our error logging class |
| 121 |
|
require_once YIKES_MC_PATH . 'includes/error_log/class-yikes-inc-easy-mailchimp-error-logging.php'; |
| 122 |
|
$error_logging = new Yikes_Inc_Easy_Mailchimp_Error_Logging; |
| 123 |
|
} |
| 124 |
|
} |
| 125 |
|
|
| 126 |
|
/* |
| 127 |
|
* On form submission, lets include our form processing file |
admin/class-yikes-inc-easy-mailchimp-extender-admin.php 1 location
|
@@ 498-505 (lines=8) @@
|
| 495 |
|
*
|
| 496 |
|
* @since 6.0.0
|
| 497 |
|
*/
|
| 498 |
|
public function load_error_logging_class() {
|
| 499 |
|
if ( get_option( 'yikes-mailchimp-debug-status', '' ) == '1' ) {
|
| 500 |
|
// if error logging is enabled we should include our error logging class
|
| 501 |
|
/* Generate oure error logging table */
|
| 502 |
|
require_once YIKES_MC_PATH . '/includes/error_log/class-yikes-inc-easy-mailchimp-error-logging.php';
|
| 503 |
|
$error_logging = new Yikes_Inc_Easy_Mailchimp_Error_Logging();
|
| 504 |
|
}
|
| 505 |
|
}
|
| 506 |
|
|
| 507 |
|
/**
|
| 508 |
|
* yikes_easy_mailchimp_check_installation_date()
|