Prep Plugin for release on WordPress.org (#23)
* Update translation text domain * Escape everything that should be escaped. * Add nonce checks where needed. * Sanitize all inputs. * Apply Code style changes across the codebase. * Correct many deprecation notices. * Optimize load order of many filters. * Add Proper Build script * Use emojii flags * Fix i18n deprecation notice for translating too early * Put all scripts in footer and load async
This commit is contained in:
@ -8,37 +8,35 @@
|
||||
|
||||
<div class="wu-styling">
|
||||
|
||||
<div class="wu-widget-inset">
|
||||
<div class="wu-widget-inset">
|
||||
|
||||
<?php
|
||||
<?php
|
||||
$data = [];
|
||||
$slug = 'signup_forms';
|
||||
$headers = [
|
||||
__('Checkout Form', 'wp-multisite-waas'),
|
||||
__('Signups', 'wp-multisite-waas'),
|
||||
];
|
||||
|
||||
$data = [];
|
||||
$slug = 'signup_forms';
|
||||
$headers = [
|
||||
__('Checkout Form', 'wp-ultimo'),
|
||||
__('Signups', 'wp-ultimo'),
|
||||
];
|
||||
foreach ($forms as $form) {
|
||||
$line = [
|
||||
esc_html($form->signup_form),
|
||||
intval($form->count), // Ensure count is an integer and properly escaped
|
||||
];
|
||||
|
||||
foreach ($forms as $form) {
|
||||
$line = [
|
||||
$form->signup_form,
|
||||
$form->count,
|
||||
];
|
||||
$data[] = $line;
|
||||
}
|
||||
|
||||
$data[] = $line;
|
||||
} // end foreach;
|
||||
$page->render_csv_button(
|
||||
[
|
||||
'headers' => $headers,
|
||||
'data' => $data,
|
||||
'slug' => $slug,
|
||||
]
|
||||
);
|
||||
?>
|
||||
|
||||
$page->render_csv_button(
|
||||
[
|
||||
'headers' => $headers,
|
||||
'data' => $data,
|
||||
'slug' => $slug,
|
||||
]
|
||||
);
|
||||
|
||||
?>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@ -46,34 +44,34 @@ $page->render_csv_button(
|
||||
|
||||
<div class="wu-advanced-filters wu--mx-3 wu--mb-3 wu-mt-3">
|
||||
|
||||
<table class="wp-list-table widefat fixed striped wu-border-t-0 wu-border-l-0 wu-border-r-0">
|
||||
|
||||
<thead>
|
||||
<tr>
|
||||
<th><?php _e('Checkout Form', 'wp-ultimo'); ?></th>
|
||||
<th class="wu-text-right"><?php _e('Signups', 'wp-ultimo'); ?></th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
|
||||
<?php foreach ($forms as $form) : ?>
|
||||
<table class="wp-list-table widefat fixed striped wu-border-t-0 wu-border-l-0 wu-border-r-0">
|
||||
|
||||
<thead>
|
||||
<tr>
|
||||
<td>
|
||||
<?php echo $form->signup_form; ?>
|
||||
<?php if ('by-admin' === $form->signup_form) : ?>
|
||||
<?php echo wu_tooltip(__('Customers created via the admin panel, by super admins.', 'wp-ultimo')); ?>
|
||||
<?php endif; ?>
|
||||
</td>
|
||||
<td class="wu-text-right"><?php echo $form->count; ?></td>
|
||||
<th><?php esc_html_e('Checkout Form', 'wp-multisite-waas'); ?></th>
|
||||
<th class="wu-text-right"><?php esc_html_e('Signups', 'wp-multisite-waas'); ?></th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<?php endforeach; ?>
|
||||
<tbody>
|
||||
|
||||
</tbody>
|
||||
<?php foreach ($forms as $form) : ?>
|
||||
|
||||
</table>
|
||||
<tr>
|
||||
<td>
|
||||
<?php echo esc_html($form->signup_form); ?>
|
||||
<?php if ('by-admin' === $form->signup_form) : ?>
|
||||
<?php echo wu_tooltip(__('Customers created via the admin panel, by super admins.', 'wp-multisite-waas')); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
|
||||
<?php endif; ?>
|
||||
</td>
|
||||
<td class="wu-text-right"><?php echo intval($form->count); ?></td> <!-- Ensure count is an integer and properly escaped -->
|
||||
</tr>
|
||||
|
||||
<?php endforeach; ?>
|
||||
|
||||
</tbody>
|
||||
|
||||
</table>
|
||||
|
||||
</div>
|
||||
|
||||
@ -81,7 +79,7 @@ $page->render_csv_button(
|
||||
|
||||
<div class="wu-bg-gray-100 wu-p-4 wu-rounded wu-mt-6">
|
||||
|
||||
<?php _e('No data yet.', 'wp-ultimo'); ?>
|
||||
<?php esc_html_e('No data yet.', 'wp-multisite-waas'); ?>
|
||||
|
||||
</div>
|
||||
|
||||
|
Reference in New Issue
Block a user