# metricool/2.0.2/app/Services/TrackingScriptService.php

Metricool – Social media and site statistics, version 2.0.2. 42 lines.

- Page: https://pluginprobe.com/plugins/metricool/2.0.2/code/app/Services/TrackingScriptService.php
- Raw: https://pluginprobe.com/plugins/metricool/2.0.2/raw/app/Services/TrackingScriptService.php
- Modified: 2026-06-11T08:45:10+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/metricool/2.0.2/code/app/Services/TrackingScriptService.php#L10-L20`.

```php
<?php

declare(strict_types=1);

namespace Metricool\Services;

class TrackingScriptService
{
    /**
     * Stores the tracking hash in the database
     */
    public function storeTrackingHash(string $hash): self
    {
        update_option('metricool_tracking_script_hash', $hash);

        return $this;
    }

    public function activateTrackingWidget(): self
    {
        update_option('metricool_tracking_script_active', true);

        return $this;
    }

    /**
     * Returns if the user has enabled the widget in the settings
     */
    public function isTrackingWidgetActive(): bool
    {
        return (bool) get_option('metricool_tracking_script_active', false);
    }

    /**
     * Returns the hash from settings
     */
    public function getTrackingHash(): string
    {
        return (string) get_option('metricool_tracking_script_hash', '');
    }
}

```
