adblock.php
2 years ago
error.php
1 year ago
info.php
1 year ago
inline.php
1 year ago
plugin_error.php
4 years ago
promo.php
1 year ago
starter-setup-success.php
1 year ago
subscribe.php
1 year ago
starter-setup-success.php
31 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Success notice for the starter setup. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | * @since 1.x.x |
| 8 | * |
| 9 | * @var string $last_post_link URL to the last created post. |
| 10 | */ |
| 11 | |
| 12 | ?> |
| 13 | <div class="notice notice-success advads-admin-notice message"> |
| 14 | <h2> |
| 15 | <?php esc_html_e( '2 Test Ads successfully added!', 'advanced-ads' ); ?> |
| 16 | </h2> |
| 17 | <p> |
| 18 | <?php esc_html_e( 'Look below for the list of created ads.', 'advanced-ads' ); ?> |
| 19 | </p> |
| 20 | <p> |
| 21 | <a href="<?php echo esc_url( admin_url( 'admin.php?page=advanced-ads-placements' ) ); ?>"><?php esc_attr_e( 'Visit list of placements', 'advanced-ads' ); ?></a> |
| 22 | </p> |
| 23 | <?php if ( $last_post_link ) : ?> |
| 24 | <p> |
| 25 | <a href="<?php echo esc_url( $last_post_link ); ?>" target="_blank"> |
| 26 | <?php esc_html_e( 'See them in action', 'advanced-ads' ); ?> |
| 27 | </a> |
| 28 | </p> |
| 29 | <?php endif; ?> |
| 30 | </div> |
| 31 |