Files
prestashop/tools/profiling/templates/functions/memory.tpl
2026-04-09 18:31:51 +02:00

18 lines
540 B
Smarty

{**
* For the full copyright and license information, please view the
* docs/licenses/LICENSE.txt file that was distributed with this source code.
*}
{function name=memory}
{$data = round($data / 1048576, 2)}
{if $data > 3}
<span class="danger">{$data|string_format:"%0.2f"}</span>
{elseif $data > 1}
<span class="warning">{$data|string_format:"%0.2f"}</span>
{elseif round($data, 2) > 0}
<span class="success">{$data|string_format:"%0.2f"}</span>
{else}
<span class="success">-</span>
{/if}
Mb
{/function}