Cachearium\CacheAbstract::printProbeStart PHP Method

printProbeStart() protected method

Prints HTML for cache debug probes -> opens tag
protected printProbeStart ( string $key, CacheData $cachedata, string $type )
$key string
$cachedata CacheData
$type string
    protected function printProbeStart($key, CacheData $cachedata, $type)
    {
        echo '<span class="cachearium-debug-probe-begin"
			data-key="' . $key . '" data-base="' . $cachedata->getKey()->base . '" data-id="' . $cachedata->getKey()->id . '" data-sub="' . print_r($cachedata->getKey()->sub, true) . '" data-lifetime="' . $cachedata->lifetime . '" data-backend="' . get_class($this) . '" data-type="' . $type . '"></span>';
    }