# age-gate/3.7.3/src/Presentation/Interaction.php

Age Gate, version 3.7.3. 21 lines.

- Page: https://pluginprobe.com/plugins/age-gate/3.7.3/code/src/Presentation/Interaction.php
- Raw: https://pluginprobe.com/plugins/age-gate/3.7.3/raw/src/Presentation/Interaction.php
- Modified: 2025-03-27T08:14:32+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/age-gate/3.7.3/code/src/Presentation/Interaction.php#L10-L20`.

```php
<?php

namespace AgeGate\Presentation;

use AgeGate\Common\Settings;

class Interaction
{
    public function __construct()
    {
        add_action('wp_enqueue_scripts', [$this, 'assets'], 1);
    }

    public function assets()
    {
        $settings = Settings::getInstance();
        $path = sprintf('%s%s%s', AGE_GATE_URL, 'dist', ($settings->rawAssets ? '/raw' : ''));
        wp_enqueue_script('age-gate-interaction', $path . '/interaction.js', [], AGE_GATE_VERSION, !$settings->inHeader);
    }
}

```
