| 1 |
<?php |
| 2 |
/** |
| 3 |
* Outputs the About section, comprising of other Plugins. |
| 4 |
* |
| 5 |
* @package WPZinc\Shared |
| 6 |
* @author WP Zinc |
| 7 |
*/ |
| 8 |
|
| 9 |
// Exit if accessed directly. |
| 10 |
if ( ! defined( 'ABSPATH' ) ) { |
| 11 |
exit; |
| 12 |
} |
| 13 |
?> |
| 14 |
<div class="wpzinc-about"> |
| 15 |
<h3><?php esc_html_e( 'Our Products', 'wp-to-buffer' ); ?></h3> |
| 16 |
|
| 17 |
<p class="description"> |
| 18 |
<?php esc_html_e( 'If you found this Plugin useful, you may also like our other products.', 'wp-to-buffer' ); ?> |
| 19 |
</p> |
| 20 |
|
| 21 |
<br /> |
| 22 |
|
| 23 |
<div class="plugin-install-php"> |
| 24 |
<?php |
| 25 |
foreach ( $products as $product ) { |
| 26 |
include $this->dashboard_folder . '/views/about-plugin-card.php'; |
| 27 |
} |
| 28 |
?> |
| 29 |
</div> |
| 30 |
</div> |
| 31 |
|
| 32 |
|