oms-Media/Theme/Backend/Components/Media/json_raw.tpl.php
Dennis Eichhorn 80a4100ba5
Some checks are pending
Image optimization / general_image_workflow (push) Waiting to run
CI / general_module_workflow_php (push) Waiting to run
CI / general_module_workflow_js (push) Waiting to run
bug fixes
2025-04-02 13:33:50 +00:00

6 lines
299 B
PHP
Executable File

<!DOCTYPE html>
<style>html, body, iframe { margin: 0; padding: 0; border: 0; }</style>
<pre><?php
$json = $this->getFileContent(($this->media->isAbsolute ? '' : __DIR__ . '/../../../../../../') . $this->media->getPath());
echo \json_encode(\json_decode($json), \JSON_PRETTY_PRINT);
?></pre>