# age-gate/3.7.3/src/Admin/Controller/PostController.php

Age Gate, version 3.7.3. 62 lines.

- Page: https://pluginprobe.com/plugins/age-gate/3.7.3/code/src/Admin/Controller/PostController.php
- Raw: https://pluginprobe.com/plugins/age-gate/3.7.3/raw/src/Admin/Controller/PostController.php
- Modified: 2023-02-22T19:50:58+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/Admin/Controller/PostController.php#L10-L20`.

```php
<?php

namespace AgeGate\Admin\Controller;

use AgeGate\Admin\Post\Edit;
use AgeGate\Common\Settings;
use Asylum\Utility\Language;
use AgeGate\Admin\Taxonomy\Term;
use AgeGate\Admin\Post\ListTable;
use AgeGate\Common\Admin\AbstractController;

class PostController extends AbstractController
{
    protected const INIT = true;
    protected $listTable;

    protected $edit;
    protected $term;

    public function register(): void
    {
        $this->listTable = new ListTable($this->view);
        $this->edit = new Edit($this->view);
        $this->term = new Term($this->view);
    }

    public function required(): bool
    {
        return true;
    }

    public function data(): array
    {
        return [];
    }

    public function fields(): array
    {
        return [];
    }

    public function enqueue(): void
    {
        wp_enqueue_script('age-gate-edit', AGE_GATE_URL . '/dist/edit.js', [], AGE_GATE_VERSION, true);

        if ($languages = Language::getInstance()->getLanguages()) {
            $settings = Settings::getInstance();
            $default = Language::getInstance()->getLanguages('default');

            $data = [];

            $data[$default['code']] = $settings->defaultAge;

            foreach ($languages as $code => $language) {
                $data[$code] = $settings->{$code}['defaultAge'] ?? $settings->defaultAge;
            }

            wp_localize_script('age-gate-edit', 'agagemap', $data);
        }
    }
}

```
