Plugin Directory

Changeset 2616041


Ignore:
Timestamp:
10/18/2021 07:02:24 PM (4 years ago)
Author:
youzify
Message:

new updated version

Location:
youzify
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • youzify/tags/1.1.4/includes/admin/class-youzify-admin.php

    r2616039 r2616041  
    1717        // Show Change Log on Activation
    1818        add_action( 'admin_notices', array( $this, 'show_activation_change_log' ), 100 );
    19 
    2019
    2120        // Add Plugin Links.
     
    14371436        $pro = ! youzify_is_feature_available() ? '<span class="youzify-log-pro">PRO</span>' : '';
    14381437
     1438        $future = strtotime('17 October 2021'); //Future date.
     1439        $timefromdb = strtotime('now');//source time
     1440        $timeleft = $future-$timefromdb;
     1441        $daysleft = round((($timeleft/24)/60)/60);
     1442        $total_days = sprintf( _n( '%d DAY LEFT', '%d DAYS LEFT', $daysleft, 'youzify' ), $daysleft );
     1443
     1444        if ( $daysleft <= 0 ) {
     1445            $total_days = 'Offer Expired';
     1446        }
     1447
    14391448        // Get Log Details.
    14401449        $logs = array(
     
    14511460                'log' => array(
    14521461                    'announce' => array(
    1453                         'Due to the Envato pricing regulations we will increase the PRO version price by <strong>24 OCTOBER 2021</strong> instead of 31 October. <a target="_blank" href="https://1.envato.market/Rqjj9"><strong>Click here to get Youzify Pro Version for $49 only</strong></a> - <strong>Onetime-payment, LIFETIME UPDATES.</strong>',
     1462                        'Due to the Envato pricing regulations we will increase the PRO version price by <strong>24 OCTOBER 2021</strong> instead of 31 October. <a target="_blank" href="https://1.envato.market/Rqjj9"><strong>Click here to get Youzify Pro Version for $49 only</strong></a> - <strong>Onetime-payment, LIFETIME UPDATES.</strong><strong style="color:#ff1e00;"> ( ' . $total_days . ' )</strong>',
    14541463                    ),
    14551464                    'fix' => array(
  • youzify/trunk/includes/admin/class-youzify-admin.php

    r2616039 r2616041  
    1717        // Show Change Log on Activation
    1818        add_action( 'admin_notices', array( $this, 'show_activation_change_log' ), 100 );
    19 
    2019
    2120        // Add Plugin Links.
     
    14371436        $pro = ! youzify_is_feature_available() ? '<span class="youzify-log-pro">PRO</span>' : '';
    14381437
     1438        $future = strtotime('17 October 2021'); //Future date.
     1439        $timefromdb = strtotime('now');//source time
     1440        $timeleft = $future-$timefromdb;
     1441        $daysleft = round((($timeleft/24)/60)/60);
     1442        $total_days = sprintf( _n( '%d DAY LEFT', '%d DAYS LEFT', $daysleft, 'youzify' ), $daysleft );
     1443
     1444        if ( $daysleft <= 0 ) {
     1445            $total_days = 'Offer Expired';
     1446        }
     1447
    14391448        // Get Log Details.
    14401449        $logs = array(
     
    14511460                'log' => array(
    14521461                    'announce' => array(
    1453                         'Due to the Envato pricing regulations we will increase the PRO version price by <strong>24 OCTOBER 2021</strong> instead of 31 October. <a target="_blank" href="https://1.envato.market/Rqjj9"><strong>Click here to get Youzify Pro Version for $49 only</strong></a> - <strong>Onetime-payment, LIFETIME UPDATES.</strong>',
     1462                        'Due to the Envato pricing regulations we will increase the PRO version price by <strong>24 OCTOBER 2021</strong> instead of 31 October. <a target="_blank" href="https://1.envato.market/Rqjj9"><strong>Click here to get Youzify Pro Version for $49 only</strong></a> - <strong>Onetime-payment, LIFETIME UPDATES.</strong><strong style="color:#ff1e00;"> ( ' . $total_days . ' )</strong>',
    14541463                    ),
    14551464                    'fix' => array(
Note: See TracChangeset for help on using the changeset viewer.