PluginProbe
The WP Remote WordPress Plugin / 4.86
The WP Remote WordPress Plugin v4.86
6.72 6.69 6.65 6.62 6.48 6.47 4.87 4.97 5.05 5.09 5.16 5.22 5.24 5.25 5.38 5.41 5.42 5.45 5.47 5.53 5.56 5.65 5.68 5.72 5.73 All 53 releases
wpremote / admin / components / list_accounts.php

list_accounts.php in The WP Remote WordPress Plugin 4.86, at admin/components/list_accounts.php

29 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <section id="account-list">
2 <?php $accounts = WPRAccount::accountsByPlugname($this->settings); ?>
3 <div class="account-list-container custom-container text-center">
4 <h4>Accounts associated with this website</h4>
5 <div class="table-container">
6 <table>
7 <tr><th>Account Email</th><th>Last Synced At</th><th></th></tr>
8 <?php
9 $nonce = wp_create_nonce('bvnonce');
10 foreach($accounts as $key => $value) {
11 ?>
12 <form action="" method="post">
13 <input type='hidden' name='bvnonce' value="<?php echo esc_attr($nonce); ?>" />
14 <input type='hidden' name='pubkey' value="<?php echo esc_attr($key); ?>" />
15 <tr>
16 <td><?php echo esc_html($value['email']); ?></td>
17 <td><?php echo esc_html(date('Y-m-d H:i:s', $value['lastbackuptime'])); ?></td>
18 <td><input type='submit' class="btn btn-primary" style="font-size: 12px" value='Disconnect' name='disconnect' onclick="return confirm('Are you sure?');"></td>
19 </tr>
20 </form>
21 <?php } ?>
22 </table>
23 </div>
24 <div style="margin: 15px;">
25 <a class="btn btn-primary" href="<?php echo esc_url($this->bvinfo->appUrl()); ?>" target="_blank">Visit Dashboard</a>
26 <a class="btn btn-primary" style="margin-left: 15px;" href="<?php echo esc_url($this->mainUrl('&add_account=true')); ?>">Connect New Account</a>
27 </div>
28 </div>
29 </section>