"; } /** * @param $message * @param \Exception|\Throwable $exception * @return string */ public function renderException($message, $exception) { Common::sendHeader('Content-Type: text/plain; charset=utf-8', true); return nl2br($message); } public function renderDataTable($dataTable) { $idSite = $this->requestObj->getIntegerParameter('idSite', 0); $method = Common::sanitizeInputValue($this->requestObj->getStringParameter('method', '')); if (empty($idSite)) { $idSite = 'all'; } /** @var \Piwik\DataTable\Renderer\Html $tableRenderer */ $tableRenderer = $this->buildDataTableRenderer($dataTable); $tableRenderer->setTableId($method); $tableRenderer->setApiMethod($method); $tableRenderer->setIdSite($idSite); $tableRenderer->setTranslateColumnNames($this->requestObj->getBoolParameter('translateColumnNames', false)); return $tableRenderer->render(); } public function renderArray($array) { return $this->renderDataTable($array); } public function sendHeader() { Common::sendHeader('Content-Type: text/html; charset=utf-8', true); } }