PluginProbe
King Addons for Elementor – 100+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce Builder, Mega Menu, Popup Builder / 51.1.86
King Addons for Elementor – 100+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce Builder, Mega Menu, Popup Builder v51.1.86
51.1.86 51.1.84 51.1.85 51.1.83 51.1.82 51.1.81 51.1.79 51.1.78 51.1.77 51.1.76 51.1.74 51.1.75 51.1.65 51.1.64 51.1.63 trunk 51.1.14 51.1.2 51.1.35 51.1.36 51.1.37 51.1.38 51.1.39 51.1.44 51.1.45 All 40 releases
← All changes | freemius/templates/email.php +49 -0 51.1.2 → 51.1.86 View file →
@@ -1,0 +1,49 @@
1 +<?php
2 + /**
3 + * @package Freemius
4 + * @copyright Copyright (c) 2015, Freemius, Inc.
5 + * @license https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License Version 3
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>