# restrict-user-access/2.8/src/Shortcode/ShortcodeInterface.php

Restrict User Access – Ultimate Membership &amp; Content Protection, version 2.8. 17 lines.

- Page: https://pluginprobe.com/plugins/restrict-user-access/2.8/code/src/Shortcode/ShortcodeInterface.php
- Raw: https://pluginprobe.com/plugins/restrict-user-access/2.8/raw/src/Shortcode/ShortcodeInterface.php
- Modified: 2025-10-06T06:47: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/restrict-user-access/2.8/code/src/Shortcode/ShortcodeInterface.php#L10-L20`.

```php
<?php

namespace RestrictUserAccess\Shortcode;

/**
 * Interface ShortcodeInterface
 *
 * @author Joachim Jensen <joachim@dev.institute>
 * @license https://www.gnu.org/licenses/gpl-3.0.html
 */
interface ShortcodeInterface
{
    public function get_names();

    public function get_callback($atts, $content = null);
}

```
