friendica/src/Factory/ProfilerFactory.php

27 lines
625 B
PHP
Raw Normal View History

2019-02-16 23:11:30 +01:00
<?php
namespace Friendica\Factory;
use Friendica\Core\Config\Cache\ConfigCache;
2019-02-16 23:11:30 +01:00
use Friendica\Util\Profiler;
class ProfilerFactory
{
/**
* Creates a Profiler for the current execution
*
* @param ConfigCache $configCache The configuration cache
2019-02-16 23:11:30 +01:00
*
* @return Profiler
*/
public static function create(ConfigCache $configCache)
2019-02-16 23:11:30 +01:00
{
$enabled = $configCache->get('system', 'profiler');
2019-02-24 13:40:54 +01:00
$enabled = isset($enabled) && $enabled !== '0';
$renderTime = $configCache->get('rendertime', 'callstack');
2019-02-24 13:40:54 +01:00
$renderTime = isset($renderTime) && $renderTime !== '0';
return new Profiler($enabled, $renderTime);
2019-02-16 23:11:30 +01:00
}
}