first commit

This commit is contained in:
2026-03-05 13:07:40 +01:00
commit 64ba0721ee
25709 changed files with 4691006 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
<?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