import-history.php
1 year ago
other-plugin-importer.php
2 months ago
page.php
5 months ago
plugin-settings.php
5 months ago
tab-importers.php
5 months ago
tab-status.php
5 months ago
tab-version.php
5 months ago
tab-importers.php
21 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Render Importers |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | * @since 1.50.0 |
| 8 | */ |
| 9 | |
| 10 | $bytes = apply_filters( 'import_upload_size_limit', wp_max_upload_size() ); |
| 11 | $size = size_format( $bytes ); |
| 12 | $upload_dir = wp_upload_dir(); |
| 13 | ?> |
| 14 | <div class="advads-importers max-w-screen-lg"> |
| 15 | <?php wp_advads()->importers->display_message(); ?> |
| 16 | <div class="wp-header-end hidden"></div> |
| 17 | <?php require 'plugin-settings.php'; ?> |
| 18 | <?php require 'other-plugin-importer.php'; ?> |
| 19 | <?php require 'import-history.php'; ?> |
| 20 | </div> |
| 21 |