Files
prestashop/tools/profiling/templates/functions/time.tpl

14 lines
363 B
Smarty
Raw Normal View History

{**
* For the full copyright and license information, please view the
* docs/licenses/LICENSE.txt file that was distributed with this source code.
*}
{function name=time}
{if $data > 4}
<span class="danger">{$data}</span>
{elseif $data > 2}
<span class="warning">{$data}</span>
{else}
<span class="success">{$data}</span>
{/if}
{/function}