aboutsummaryrefslogtreecommitdiff
path: root/mod/diagnostics/actions/download.php
blob: c06c479495cfa3b4b9c4e252e6feb1dd956320b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
	/**
	 * Elgg diagnostics
	 * 
	 * @package ElggDiagnostics
	 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
	 * @author Curverider Ltd
	 * @copyright Curverider Ltd 2008-2009
	 * @link http://elgg.com/
	 */

	admin_gatekeeper();
	
	$output = sprintf(elgg_echo('diagnostics:header'), date('r'), $_SESSION['user']->name); 
	$output = trigger_plugin_hook('diagnostics:report', 'all', null, $output);
	
	header("Cache-Control: public");
	header("Content-Description: File Transfer");
	header('Content-disposition: attachment; filename=elggdiagnostic.txt');
	header("Content-Type: text/plain");
	header('Content-Length: '. strlen($output));

	echo $output;
?>