status = $this->models->getOrders()->countStatus();?>
getContent(); ?>
'); $info = $this->profiler->getInfoStatistics(); echo ( '
'. '=50 ? ' class="warning"' : '' ).'>time total: '.$info['exec'].' ms | '. 'db time ('.$info['db']['count'].'): '.$info['db']['time'].' ms | '. '=800 ? ' class="warning"' : '' ).'>memory: '.$info['memory'].' KB'. '
' ); $info = $this->profiler->getAllStatistics(); if( !empty($info) && isset($info['sql']) && !empty($info['sql']) ) { $html = '
'; $c = 1; foreach( $info['sql'] as $d ) { $html .= '
'. '
'.$c.'
'. '
'.trim($d['sql']).'
'. '
'.round( $d['time'] * 1000, 3 ).' ms
'. '
'; $c++; } $html .= '
'; echo( $html ); echo(''); } } ?>