Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
magento2-base
pub
errors
report.php
Go to the documentation of this file.
1
<?php
7
require_once
'processorFactory.php'
;
8
9
$processorFactory
= new \Magento\Framework\Error\ProcessorFactory();
10
$processor
=
$processorFactory
->createProcessor();
11
12
if
(isset($reportData) && is_array($reportData)) {
13
$reportUrl =
$processor
->saveReport($reportData);
14
if
(
headers_sent
()) {
15
echo
'<script type="text/javascript">'
;
16
echo
"window.location.href = '{$reportUrl}';"
;
17
echo
'</script>'
;
18
exit
;
19
}
20
}
21
22
$response
=
$processor
->processReport();
23
$response
->sendResponse();
$processor
$processor
Definition:
report.php:10
$processorFactory
$processorFactory
Definition:
report.php:9
exit
exit
Definition:
redirect.phtml:12
$response
if(isset($reportData) &&is_array($reportData)) $response
Definition:
report.php:22
Magento\Framework\Session\headers_sent
headers_sent()
Definition:
SessionManagerTest.php:32