donordashboard.php
3 years ago
donordashboardloader.php
4 years ago
successnotice.php
4 years ago
upgradenotice.php
4 years ago
donordashboard.php
17 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Donor Dashboard view |
| 4 | * |
| 5 | * @since 2.10.0 |
| 6 | */ |
| 7 | |
| 8 | use Give\Views\IframeContentView; |
| 9 | |
| 10 | $pageId = give_get_option('donor_dashboard_page'); |
| 11 | $iframeView = new IframeContentView(); |
| 12 | |
| 13 | echo $iframeView |
| 14 | ->setTitle(esc_html__('Donor Dashboard', 'give'))->setPostId($pageId) |
| 15 | ->setBody('<div id="give-donor-dashboard"></div>') |
| 16 | ->render(); |
| 17 |