Changeset 2616041
- Timestamp:
- 10/18/2021 07:02:24 PM (4 years ago)
- Location:
- youzify
- Files:
-
- 2 edited
-
tags/1.1.4/includes/admin/class-youzify-admin.php (modified) (3 diffs)
-
trunk/includes/admin/class-youzify-admin.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
youzify/tags/1.1.4/includes/admin/class-youzify-admin.php
r2616039 r2616041 17 17 // Show Change Log on Activation 18 18 add_action( 'admin_notices', array( $this, 'show_activation_change_log' ), 100 ); 19 20 19 21 20 // Add Plugin Links. … … 1437 1436 $pro = ! youzify_is_feature_available() ? '<span class="youzify-log-pro">PRO</span>' : ''; 1438 1437 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 1439 1448 // Get Log Details. 1440 1449 $logs = array( … … 1451 1460 'log' => array( 1452 1461 '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>', 1454 1463 ), 1455 1464 'fix' => array( -
youzify/trunk/includes/admin/class-youzify-admin.php
r2616039 r2616041 17 17 // Show Change Log on Activation 18 18 add_action( 'admin_notices', array( $this, 'show_activation_change_log' ), 100 ); 19 20 19 21 20 // Add Plugin Links. … … 1437 1436 $pro = ! youzify_is_feature_available() ? '<span class="youzify-log-pro">PRO</span>' : ''; 1438 1437 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 1439 1448 // Get Log Details. 1440 1449 $logs = array( … … 1451 1460 'log' => array( 1452 1461 '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>', 1454 1463 ), 1455 1464 'fix' => array(
Note: See TracChangeset
for help on using the changeset viewer.