Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
16 | public function download( $filename, $content ) |
||
17 | { |
||
18 | if( !current_user_can( glsr()->constant( 'CAPABILITY' )))return; |
||
19 | nocache_headers(); |
||
20 | header( 'Content-Type: text/plain' ); |
||
21 | header( 'Content-Disposition: attachment; filename="'.$filename.'"' ); |
||
22 | echo html_entity_decode( $content ); |
||
23 | exit; |
||
24 | } |
||
64 |