| Server IP : 146.59.209.152 / Your IP : 216.73.216.152 Web Server : Apache System : Linux webm009.cluster131.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : monpetu ( 144298) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/monpetu/www/ipprint/wp-content/plugins/power-coupons/views/points/ |
Upload File : |
<?php
/**
* Pending review points notice — shown below the "awaiting approval" message.
*
* @package Power_Coupons
* @var int $points Points the customer will earn once approved.
* @var string $label Points label (singular/plural).
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( $points <= 0 ) {
return;
}
?>
<p class="power-coupons-review-pending-points">
<em>
<?php esc_html_e( 'Once approved,', 'power-coupons' ); ?>
<strong><?php echo esc_html( number_format_i18n( $points ) ); ?></strong>
<?php echo esc_html( $label ); ?>
<?php esc_html_e( 'will be added to your account.', 'power-coupons' ); ?>
</em>
</p>