donordashboard.php
3 years ago
donordashboardloader.php
4 years ago
successnotice.php
4 years ago
upgradenotice.php
4 years ago
successnotice.php
16 lines
| 1 | <?php |
| 2 | |
| 3 | $pageId = give_get_option('donor_dashboard_page'); |
| 4 | |
| 5 | $pageUrl = get_permalink($pageId); |
| 6 | |
| 7 | ?> |
| 8 | |
| 9 | <div class="notice notice-success is-dismissible"> |
| 10 | <p><?php |
| 11 | printf( |
| 12 | __('Success! Donor Dashboard page was created. You can <a href="%s">take a look at it here.</a>', 'give'), |
| 13 | $pageUrl |
| 14 | ); ?></p> |
| 15 | </div> |
| 16 |