import-history.php
1 year ago
other-plugin-importer.php
1 week ago
page.php
3 months ago
plugin-settings.php
3 months ago
tab-importers.php
3 months ago
tab-status.php
3 months ago
tab-version.php
3 months ago
tab-status.php
18 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Render System information |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | * @since 1.50.0 |
| 8 | */ |
| 9 | |
| 10 | use AdvancedAds\Admin\System_Info; |
| 11 | |
| 12 | $system_info = new System_Info(); |
| 13 | ?> |
| 14 | <div class="advads-system-information"> |
| 15 | <h2><?php esc_html_e( 'System Information', 'advanced-ads' ); ?></h2> |
| 16 | <textarea readonly onclick="this.select()"><?php echo esc_textarea( $system_info->get_info() ); ?></textarea> |
| 17 | </div> |
| 18 |