|
1
|
<?php |
|
2
|
/** |
|
3
|
* Payment receipt view.
|
|
4
|
*
|
|
5
|
* @since 2.7.0
|
|
6
|
*/ |
|
7
|
|
|
8
|
use Give\Views\IframeContentView; |
|
9
|
|
|
10
|
$iframeView = new IframeContentView(); |
|
11
|
|
|
12
|
echo $iframeView->setTitle(esc_html__('Donation Receipt', 'give')) |
|
13
|
->setBody('<div id="give-receipt"></div>')->render(); |
|
14
|
|