debug
9 years ago
forms
9 years ago
plugin-info
9 years ago
account.php
9 years ago
add-ons.php
9 years ago
add-trial-to-pricing.php
9 years ago
admin-notice.php
9 years ago
ajax-loader.php
9 years ago
all-admin-notice.php
9 years ago
auto-installation.php
9 years ago
billing.php
9 years ago
checkout-legacy.php
9 years ago
checkout.php
9 years ago
connect.php
9 years ago
contact.php
9 years ago
debug.php
9 years ago
email.php
9 years ago
firewall-issues-js.php
9 years ago
index.php
9 years ago
plugin-icon.php
9 years ago
powered-by.php
9 years ago
pricing.php
9 years ago
sticky-admin-notice-js.php
9 years ago
email.php
49 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 | if ( ! defined( 'ABSPATH' ) ) { |
| 10 | exit; |
| 11 | } |
| 12 | |
| 13 | /** |
| 14 | * @var array $VARS |
| 15 | */ |
| 16 | $sections = $VARS['sections']; |
| 17 | ?> |
| 18 | <table> |
| 19 | <?php |
| 20 | foreach ( $sections as $section_id => $section ) { |
| 21 | ?> |
| 22 | <thead> |
| 23 | <tr><th colspan="2" style="text-align: left; background: #333; color: #fff; padding: 5px;"><?php echo esc_html($section['title']) ?></th></tr> |
| 24 | </thead> |
| 25 | <tbody> |
| 26 | <?php |
| 27 | foreach ( $section['rows'] as $row_id => $row ) { |
| 28 | $col_count = count( $row ); |
| 29 | ?> |
| 30 | <tr> |
| 31 | <?php |
| 32 | if ( 1 === $col_count ) { ?> |
| 33 | <td style="vertical-align: top;" colspan="2"><?php echo $row[0] ?></td> |
| 34 | <?php |
| 35 | } else { ?> |
| 36 | <td style="vertical-align: top;"><b><?php echo esc_html($row[0]) ?>:</b></td> |
| 37 | <td><?php echo $row[1]; ?></td> |
| 38 | <?php |
| 39 | } |
| 40 | ?> |
| 41 | </tr> |
| 42 | <?php |
| 43 | } |
| 44 | ?> |
| 45 | </tbody> |
| 46 | <?php |
| 47 | } |
| 48 | ?> |
| 49 | </table> |