| 1 |
<?php |
| 2 |
|
| 3 |
namespace RestrictUserAccess\Shortcode; |
| 4 |
|
| 5 |
/** |
| 6 |
* Interface ShortcodeInterface |
| 7 |
* |
| 8 |
* @author Joachim Jensen <joachim@dev.institute> |
| 9 |
* @license https://www.gnu.org/licenses/gpl-3.0.html |
| 10 |
*/ |
| 11 |
interface ShortcodeInterface |
| 12 |
{ |
| 13 |
public function get_names(); |
| 14 |
|
| 15 |
public function get_callback($atts, $content = null); |
| 16 |
} |
| 17 |
|