# age-gate/trunk/src/Enqueue/Enqueue.php

Age Gate, version trunk. 90 lines.

- Page: https://pluginprobe.com/plugins/age-gate/trunk/code/src/Enqueue/Enqueue.php
- Raw: https://pluginprobe.com/plugins/age-gate/trunk/raw/src/Enqueue/Enqueue.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/trunk/code/src/Enqueue/Enqueue.php#L10-L20`.

```php
<?php

namespace AgeGate\Enqueue;

use AgeGate\Common\Settings;
use AgeGate\Presentation\Form;

class Enqueue
{
    public function __construct()
    {
        add_action('admin_enqueue_scripts', [$this, 'admin'], 99);
        add_action('wp_enqueue_scripts', [$this, 'assets']);
    }

    public function admin()
    {
        if (($GLOBALS['pagenow'] ?? false) === 'plugins.php') {
            wp_enqueue_script('age-gate-update', AGE_GATE_URL . 'dist/update.js', [], AGE_GATE_VERSION, true);
        }

        $pages = [
            'edit-tags.php',
            'edit.php',
            'post-new.php',
            'post.php',
            'term.php',
            'edit-tags.php',
        ];


        global $plugin_page;

        if (
            ($GLOBALS['pagenow'] ?? false) === 'admin.php' && strpos(($plugin_page ?: ''), 'age-gate') !== false
            || in_array(($GLOBALS['pagenow'] ?? false), $pages)) {
                wp_enqueue_media();
                wp_enqueue_style('age-gate-admin', AGE_GATE_URL . 'dist/admin.css', [], AGE_GATE_VERSION);

                wp_localize_script(
                    'age-gate-admin',
                    'ag_admin',
                    [
                        'rest' => rest_url( 'age-gate/v3/admin/terms'),
                        'nonce' => wp_create_nonce('wp_rest'),
                    ]
                );
            // wp_enqueue_script('age-gate-admin', AGE_GATE_URL . 'dist/admin.js', [], AGE_GATE_VERSION, true);
        }
    }

    public function assets()
    {
        $settings = Settings::getInstance();

        $path = sprintf('%s%s%s', AGE_GATE_URL, 'dist', ($settings->rawAssets ? '/raw' : ''));

        wp_enqueue_script('age-gate-all', $path . '/all.js', [], AGE_GATE_VERSION, true);

        wp_localize_script( 'age-gate-all', 'age_gate_common', [
            'cookies' => $settings->labelNoCookies,
            'simple' => $settings->simplebar,
        ]);

        wp_register_script('age-gate-shortcode', $path . '/shortcode.js', [], AGE_GATE_VERSION, true);

        if ($settings->enqueueCss) {
            wp_register_style('age-gate', $path . '/main.css', [], AGE_GATE_VERSION);
        }

        if ($settings->inputAutoTab && !$settings->stepped) {
            wp_enqueue_script('age-gate-autotab', $path . '/autotab.js', [], AGE_GATE_VERSION, !$settings->inHeader);
        }

        if ($settings->simplebar) {
            wp_enqueue_script('age-gate-simplebar', $path . '/simplebar.js', [], AGE_GATE_VERSION, true);
        }


        if ($settings->stepped && $settings->inputType !== 'buttons') {
            wp_enqueue_style('age-gate-stepped', $path . '/stepped.css', [], AGE_GATE_VERSION);
            wp_enqueue_script('age-gate-stepped');
        }

        (new Form())
            ->optionStyle()
            ->enqueue();
    }
}

```
