plugin-info
10 years ago
account.php
10 years ago
add-ons.php
10 years ago
admin-notice.php
10 years ago
all-admin-notice.php
10 years ago
checkout.php
10 years ago
connect.php
10 years ago
contact.php
10 years ago
deactivation-feedback-modal.php
10 years ago
debug.php
10 years ago
email.php
10 years ago
firewall-issues-js.php
10 years ago
pending-activation.php
10 years ago
plugin-icon.php
10 years ago
powered-by.php
10 years ago
pricing.php
10 years ago
sticky-admin-notice-js.php
10 years ago
email.php
42 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @package Freemius |
| 4 | * @copyright Copyright (c) 2015, Freemius, Inc. |
| 5 | * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License |
| 6 | * @since 1.1.1 |
| 7 | */ |
| 8 | |
| 9 | $sections = $VARS['sections']; |
| 10 | ?> |
| 11 | <table> |
| 12 | <?php |
| 13 | foreach ( $sections as $section_id => $section ) { |
| 14 | ?> |
| 15 | <thead> |
| 16 | <tr><th colspan="2" style="text-align: left; background: #333; color: #fff; padding: 5px;"><?php echo $section['title']; ?></th></tr> |
| 17 | </thead> |
| 18 | <tbody> |
| 19 | <?php |
| 20 | foreach ( $section['rows'] as $row_id => $row ) { |
| 21 | $col_count = count( $row ); |
| 22 | ?> |
| 23 | <tr> |
| 24 | <?php |
| 25 | if ( 1 === $col_count ) { ?> |
| 26 | <td style="vertical-align: top;" colspan="2"><?php echo $row[0]; ?></td> |
| 27 | <?php |
| 28 | } else { ?> |
| 29 | <td style="vertical-align: top;"><b><?php echo $row[0]; ?>:</b></td> |
| 30 | <td><?php echo $row[1]; ?></td> |
| 31 | <?php |
| 32 | } |
| 33 | ?> |
| 34 | </tr> |
| 35 | <?php |
| 36 | } |
| 37 | ?> |
| 38 | </tbody> |
| 39 | <?php |
| 40 | } |
| 41 | ?> |
| 42 | </table> |