Files
carpseeds.pl/wp-content/plugins/przelewy24/templates/subscriptions-list-inactive.php
2024-07-15 11:28:08 +02:00

44 lines
1012 B
PHP

<?php
/**
* Template for inactive subscriptions.
*
* @package Przelewy24
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! isset( $inactive_list ) ) {
throw new LogicException( 'The variable $inactive_list is not set.' );
}
?>
<h1><?php echo esc_html( __( 'Moduł subskrypcji' ) ); ?></h1>
<h2><?php echo esc_html( __( 'Nieaktywne subskrypcje' ) ); ?></h2>
<form method="post">
<table class="p24-border">
<tr>
<tr>
<th><?php echo esc_html( __( 'Użytkownik' ) ); ?></th>
<th><?php echo esc_html( __( 'E-Mail' ) ); ?></th>
<th><?php echo esc_html( __( 'Ważna do' ) ); ?></th>
<th><?php echo esc_html( __( 'Subskrypcje' ) ); ?></th>
</tr>
<?php foreach ( $inactive_list as $one ) : ?>
<tr>
<td><?php echo esc_html( $one->user_nicename ); ?></td>
<td><?php echo esc_html( $one->user_email ); ?></td>
<td><?php echo esc_html( $one->valid_to ); ?></td>
<td><?php echo esc_html( $one->subscription_title ); ?></td>
</tr>
<?php endforeach; ?>
</table>
</form>
<?php