Files
prestashop/tools/profiling/templates/functions/sql-queries.tpl

14 lines
398 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=sql_queries}
{if $data > 150}
<span class="danger">{$data} queries</span>
{elseif $data > 100}
<span class="warning">{$data} queries</span>
{else}
<span class="success">{$data} queries</span>
{/if}
{/function}