1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<?php defined( 'ABSPATH' ) || die( 'Cheatin’ uh?' );
$this->print_template( 'notice-header', array( 'classes' => array( 'imagify-flex-notice-content', 'error' ), ) );
$views = Imagify_Views::get_instance(); ?> <div class="imagify-notice-quota"> <div class="imagify-flex imagify-vcenter"> <span class="imagify-meteo-icon imagify-noshrink"><?php echo $views->get_quota_icon(); ?></span> <div class="imagify-space-left"> <p> <?php printf( /* translators: %s is a data quota. */ esc_html__( 'You have %s space credit left', 'imagify' ), '<span class="imagify-unconsumed-percent">' . $views->get_quota_percent() . '%</span>' ); ?> </p>
<div class="<?php echo $views->get_quota_class(); ?>"> <div class="imagify-unconsumed-bar imagify-progress" style="width: <?php echo $views->get_quota_percent() . '%'; ?>;"></div> </div> </div> </div> </div> <p> <?php esc_html_e( 'You are running out of credit! Don’t forget to upgrade your Imagify’s account.', 'imagify' ); ?>
<a target="_blank" class="button imagify-button imagify-button-secondary button-mini" href="<?php echo esc_url( imagify_get_external_url( 'subscription' ) ); ?>"><?php esc_html_e( 'See our plans', 'imagify' ); ?></a> </p> <?php $this->print_template( 'notice-footer', array( 'dismissible' => 'almost-over-quota', ) );
|