Plugin Directory

Changeset 3432685


Ignore:
Timestamp:
01/05/2026 11:27:14 AM (3 months ago)
Author:
checkemail
Message:

2.0.11 Released

Location:
check-email/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • check-email/trunk/changelog.txt

    r3410930 r3432685  
    11== Changelog ==
     2= v2.0.11 - 05/01/2026 =
     3- Remove: Removed BFCM Banner #156
     4
    25= v2.0.10 - 04/12/2025 =
    36- Feature Added: Error Log notification #46
  • check-email/trunk/check-email.php

    r3410930 r3432685  
    44* Description:              Check & Log email allows you to test if your WordPress installation is sending emails correctly and logs every email.
    55* Author:                   checkemail
    6 * Version:                  2.0.10
     6* Version:                  2.0.11
    77* Author URI:               https://check-email.tech/
    88* Plugin URI:               https://check-email.tech/
     
    4242define( 'CK_MAIL_PATH', dirname( __FILE__ ) );
    4343define( 'CK_MAIL_URL', plugin_dir_url( __FILE__ ) );
    44 define( 'CK_MAIL_VERSION', '2.0.10' );
     44define( 'CK_MAIL_VERSION', '2.0.11' );
    4545
    4646require_once(CK_MAIL_PATH. "/include/helper-function.php" );
  • check-email/trunk/include/Core/Check_Email_Logger.php

    r3410930 r3432685  
    196196        apply_filters('wp_check_email_failed', $mail_error_data, $mail_error_message);
    197197        $this->mark_email_log_as_failed($mail_error_data, $mail_error_message );
    198     }
     198    }
    199199
    200200    public function log_buddy_press_email( $status, $bp_mail ) {
  • check-email/trunk/include/helper-function.php

    r3410930 r3432685  
    13071307
    13081308}
    1309 
    1310 /* * BFCM Banner Integration
    1311  * Loads assets from assets/css and assets/js
    1312  */
    1313 add_action('admin_enqueue_scripts', 'check_mail_enqueue_bfcm_assets');
    1314 
    1315 function check_mail_enqueue_bfcm_assets($hook) {
    1316  
    1317     //var_dump($hook);
    1318     if ( $hook !== 'check-log-email_page_check-email-settings'
    1319          && $hook !== 'check-log-email_page_check-email-logs'
    1320          && $hook !== 'check-log-email_page_spam-analyzer'
    1321          && $hook !== 'check-log-email_page_check-email-error-tracker' ) {
    1322         return;
    1323     }
    1324    
    1325     /*if ( ! isset($_GET['page']) || $_GET['page'] !== 'setting_page_check-email-dashboard' ) {
    1326         return;
    1327     }*/
    1328 
    1329     // 2. define settings
    1330     $expiry_date_str = '2025-12-25 23:59:59';
    1331     $offer_link      = 'https://check-email.tech/bfcm-2025/';
    1332 
    1333     // 3. Expiry Check (Server Side)
    1334     if ( current_time('timestamp') > strtotime($expiry_date_str) ) {
    1335         return;
    1336     }
    1337 
    1338     // 4. Register & Enqueue CSS   
    1339     wp_enqueue_style(
    1340         'ck-bfcm-style',
    1341         CK_MAIL_URL. 'assets/css/bfcm-style.css',
    1342         array(),
    1343         CK_MAIL_VERSION
    1344     );
    1345 
    1346     // 5. Register & Enqueue JS
    1347     wp_enqueue_script(
    1348         'ck-bfcm-script',
    1349         CK_MAIL_URL. 'assets/js/bfcm-script.js',
    1350         array('jquery'), // jQuery dependency
    1351         CK_MAIL_VERSION,
    1352         true
    1353     );
    1354 
    1355     // 6. Data Pass (PHP to JS)
    1356     wp_localize_script('ck-bfcm-script', 'bfcmData', array(
    1357         'targetDate' => $expiry_date_str,
    1358         'offerLink'  => $offer_link
    1359     ));
    1360 }
  • check-email/trunk/readme.txt

    r3410930 r3432685  
    55Tested up to: 6.9
    66Requires PHP: 5.6
    7 Stable tag: 2.0.10
     7Stable tag: 2.0.11
    88License: GPLv3 or later
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    124124== Changelog ==
    125125
     126= v2.0.11 - 05/01/2026 =
     127- Remove: Removed BFCM Banner #156
     128
    126129= v2.0.10 - 04/12/2025 =
    127130- Feature Added: Error Log notification #46
Note: See TracChangeset for help on using the changeset viewer.