import-history.php
1 year ago
importers.php
1 year ago
other-plugin-importer.php
1 year ago
plugin-importer.php
1 year ago
status.php
1 year ago
tools.php
1 year ago
version.php
1 year ago
status.php
21 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 id="advads-system-information" readonly><?php echo esc_textarea( $system_info->get_info() ); ?></textarea> |
| 17 | <button type="button" id="advads-system-information-copy" class="button button-primary"> |
| 18 | <?php esc_html_e( 'Copy System Information', 'advanced-ads' ); ?> |
| 19 | </button> |
| 20 | </div> |
| 21 |