AnonSec Shell
Server IP : 85.193.89.191  /  Your IP : 18.118.200.149
Web Server : Apache
System : Linux 956367-cx40159.tmweb.ru 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64
User : bitrix ( 600)
PHP Version : 8.1.27
Disable Function : NONE
MySQL : OFF  |  cURL : OFF  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/bitrix/www/bitrix/modules/mail/lib/helper/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     

Current File : /home/bitrix/www/bitrix/modules/mail/lib/helper/downloadresponse.php
<?php

namespace Bitrix\Mail\Helper;

/**
 * Response with headers that induce browser downloading as file
 * should be in module main
 */
class DownloadResponse extends \Bitrix\Main\HttpResponse
{
	/**
	 * Constructor
	 *
	 * @param string $content Content to download
	 * @param string $name Name of downloaded file (should be compliant with standards)
	 * @param string $contentType MIME content type for browser
	 */
	public function __construct(string $content, string $name = 'download_file', string $contentType = 'application/octet-stream')
	{
		parent::__construct();
		$this->setContent($content);

		$headers = new \Bitrix\Main\Web\HttpHeaders();
		$headers->add('Pragma', 'public');
		$headers->add('Expires', '0');
		$headers->add('Cache-Control', 'must-revalidate, post-check=0, pre-check=0');
		$headers->add('Content-Disposition', 'attachment; filename="' . $name . '";');
		$headers->add('Content-Transfer-Encoding', 'binary');
		$headers->add('Content-Length', strlen($content));
		$headers->add('Content-Type', $contentType);

		$this->setHeaders($headers);
	}

}

Anon7 - 2022
AnonSec Team