-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathclass-comment-type.php
148 lines (126 loc) · 3 KB
/
class-comment-type.php
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<?php
/**
* Comment Type Class
*/
namespace Webmention;
/**
* Class used for interacting with comment types.
*
* @see register_webmention_comment_type()
*/
final class Comment_Type {
/**
* Comment type key.
*
* @var string $name
*/
public $name = '';
/**
* Name of the comment type. Usually plural.
*
* @var string $label
*/
public $label = 'Mentions';
/**
* Name of the comment type. Singular.
*
* @var string $singular
*/
public $singular = 'Mention';
/**
* Single Character Emoji Representation of the Comment Type. Optional.
*
* @var string $icon
*/
public $icon = '💬';
/**
* Class to use when displaying the comment. Optional.
*
* @var string $class
*/
public $class = 'p-mention';
/**
* A short descriptive summary of what the comment type is.
*
* Default empty.
*
* @var string $description
*/
public $description = '';
/**
* An excerpt to show instead of the "real" content.
*
* @var string $excerpt
*/
public $excerpt = '';
/**
* Constructor.
*
* Will populate object properties from the provided arguments and assign other
* default properties based on that information.
*
*
* @see register_webmention_comment_type()
*
* @param string $post_type Post type key.
* @param array|string $args Optional. Array or string of arguments for registering a post type.
* Default empty array.
*/
public function __construct( $post_type, $args = array() ) {
$this->name = $post_type;
$this->set_properties( $args );
}
/**
* Sets comment type properties.
*
* @param array|string $args Array or string of arguments for registering a comment type.
*/
public function set_properties( $args ) {
$args = wp_parse_args( $args );
/**
* Filters the arguments for registering a comment type.
*
* @param array $args Array of arguments for registering a comment type.
* @param string $comment_type Comment type key.
*/
$args = apply_filters( 'register_webmention_comment_type_args', $args, $this->name );
// Args prefixed with an underscore are reserved for internal use.
$defaults = array(
'description' => '',
);
$args = array_merge( $defaults, $args );
$args['name'] = $this->name;
foreach ( $args as $property_name => $property_value ) {
$this->$property_name = $property_value;
}
}
/**
* Magic function for getter/setter.
*
* @param string $method
* @param array $params
*
* @return void
*/
public function __call( $method, $params ) {
if ( ! array_key_exists( 1, $params ) ) {
$params[1] = false;
}
$var = strtolower( substr( $method, 4 ) );
if ( strncasecmp( $method, 'get', 3 ) === 0 ) {
return $this->$var;
}
if ( strncasecmp( $method, 'has', 3 ) === 0 ) {
return ! empty( $this->$var );
}
if ( strncasecmp( $method, 'set', 3 ) === 0 ) {
$this->$var = current( $params );
}
}
public function get( $param ) {
if ( isset( $this->$param ) ) {
return $this->$param;
}
return null;
}
}