# age-gate/trunk/src/Shortcode/ShortcodeContent.php

Age Gate, version trunk. 16 lines.

- Page: https://pluginprobe.com/plugins/age-gate/trunk/code/src/Shortcode/ShortcodeContent.php
- Raw: https://pluginprobe.com/plugins/age-gate/trunk/raw/src/Shortcode/ShortcodeContent.php
- Modified: 2022-09-11T18:42: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/Shortcode/ShortcodeContent.php#L10-L20`.

```php
<?php

namespace AgeGate\Shortcode;

use AgeGate\Common\Content;

class ShortcodeContent extends Content
{
    public function __construct()
    {
        $this->setType('shortcode');
        $this->setDefaultAge(21);
        $this->setAge(21);
    }
}

```
