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,29 @@
<table id="recent-subscribers-activities" class="mt-2 w-full bg-white rounded-md overflow-hidden" style="<?php echo ! empty( $upsell ) ? 'filter:blur(1px);' : ''; ?>">
<tbody>
<?php
$allowed_html_tags = ig_es_allowed_html_tags_in_esc();
if ( ! empty( $recent_activities ) ) {
foreach ( $recent_activities as $activitiy ) {
?>
<tr class="border-b border-gray-200 text-sm leading-5">
<td class="py-3 text-gray-500">
<span>
<?php echo wp_kses( $activitiy['text'], $allowed_html_tags ); ?>
</span>
</td>
<td class="pl-1 py-3 text-gray-600 text-right">
<span>
<?php echo esc_html( $activitiy['time'] ); ?>
</span>
</td>
</tr>
<?php
}
} else {
?>
<tr><td><?php echo esc_html__( 'No recent activities found.', 'email-subscribers' ); ?></td></tr>
<?php
}
?>
</tbody>
</table>