Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathShortcodeInterface.php
More file actions
Latest commit
55 lines (49 loc) · 1.06 KB
/
Copy pathShortcodeInterface.php
File metadata and controls
55 lines (49 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
/**
* Shortcode Interface
*
* @author Whizark <devaloka@whizark.com>
* @see http://whizark.com
* @copyright Copyright (C) 2014 Whizark.
* @license MIT
*/
namespaceDevaloka\Component\Shortcode;
/**
* Interface ShortcodeInterface
*
* @package Devaloka\Component\Shortcode
*
* @codeCoverageIgnore
*/
interface ShortcodeInterface
{
/**
* Gets the Shortcode tag name.
*
* @return string The Shortcode tag name.
*/
publicfunctiongetName();
/**
* Gets the callable for the Shortcode processing.
*
* @return callable The callable.
*/
publicfunctiongetCallable();
/**
* Invokes the Shortcode.
*
* @param mixed[] $attributes The attributes.
* @param string|null $content The enclosed content.
*
* @return string The processed content.
*/
publicfunctioninvoke(array$attributes = [], $content = null);
/**
* Registers the Shortcode.
*/
publicfunctionregister();
/**
* Unregisters the Shortcode.
*/
publicfunctionunregister();
}