MAPG-180 don't buffer content output to variable

This commit is contained in:
Bence Pőcze 2020-06-27 12:56:47 +02:00
parent efdd5c54be
commit a55ece7dac
Signed by: bence
GPG Key ID: AA52B11A3269D1C1
4 changed files with 6 additions and 13 deletions

View File

@ -4,7 +4,7 @@ interface IContent
{
public function &getData(): array;
public function &render(): string;
public function render(): void;
public function getContentType(): string;
}

View File

@ -11,7 +11,7 @@ abstract class ContentBase implements IContent
return $this->data;
}
abstract public function &render(): string;
abstract public function render(): void;
abstract public function getContentType(): string;
}

View File

@ -12,7 +12,7 @@ class HtmlContent extends ContentBase
$this->data = &$data;
}
public function &render(): string
public function render(): void
{
if (!empty($_ENV['DEV'])) {
$generator = new Linker($this->view);
@ -21,14 +21,9 @@ class HtmlContent extends ContentBase
extract($this->data);
ob_start();
require ROOT . '/cache/views/' . $this->view . '.php';
$content = ob_get_contents();
ob_end_clean();
$content .= '<!-- __debug__runtime: ' . round((hrtime(true) - SCRIPT_STARTED) / 1e+6, 1) . ' -->';
return $content;
echo '<!-- __debug__runtime: ' . round((hrtime(true) - SCRIPT_STARTED) / 1e+6, 1) . ' -->';
}
public function getContentType(): string

View File

@ -7,13 +7,11 @@ class JsonContent extends ContentBase
$this->data = &$data;
}
public function &render(): string
public function render(): void
{
$this->data['__debug__runtime'] = round((hrtime(true) - SCRIPT_STARTED) / 1e+6, 1);
$content = json_encode($this->data);
return $content;
echo json_encode($this->data);
}
public function getContentType(): string