PK

ADDRLIN : /home/carfac/.trash/wp-statistics/views/components/headers/
FLL :
Current File : /home/carfac/.trash/wp-statistics/views/components/headers/single-resource.php

<?php

if (!defined('ABSPATH')) exit; // Exit if accessed directly

use WP_Statistics\Utils\Request;
$uri = Request::get('uri', '', 'raw');
$uri = rawurldecode($uri);
?>

<div class="wps-content-analytics-header wps-content-analytics-header__single-resource">
    <div>
        <div class="wps-content-analytics-header__title">
            <h2 class="wps_title"><?php echo esc_html($uri); ?></h2>
            <a href="<?php echo esc_url(home_url($uri)); ?>" target="_blank" title="<?php echo esc_attr($uri); ?>"></a>
        </div>
    </div>
</div>


PK 99