@@ -242,6 +242,7 @@ |
||
| 242 | 242 | /** |
| 243 | 243 | * Returns the current error as an IXR_Error |
| 244 | 244 | * |
| 245 | + * @param string $tracks_event_name |
|
| 245 | 246 | * @return bool|IXR_Error |
| 246 | 247 | */ |
| 247 | 248 | function error( $error = null, $tracks_event_name = null, $user = null ) { |
@@ -115,6 +115,11 @@ discard block |
||
| 115 | 115 | } |
| 116 | 116 | |
| 117 | 117 | // /sites/%s/taxonomies/%s/terms/new -> $blog_id, $taxonomy |
| 118 | + |
|
| 119 | + /** |
|
| 120 | + * @param string $path |
|
| 121 | + * @param string $taxonomy |
|
| 122 | + */ |
|
| 118 | 123 | function new_term( $path, $blog_id, $taxonomy ) { |
| 119 | 124 | $args = $this->query_args(); |
| 120 | 125 | $input = $this->input(); |
@@ -160,6 +165,12 @@ discard block |
||
| 160 | 165 | } |
| 161 | 166 | |
| 162 | 167 | // /sites/%s/taxonomies/%s/terms/slug:%s -> $blog_id, $taxonomy, $slug |
| 168 | + |
|
| 169 | + /** |
|
| 170 | + * @param string $path |
|
| 171 | + * @param string $slug |
|
| 172 | + * @param string $taxonomy |
|
| 173 | + */ |
|
| 163 | 174 | function update_term( $path, $blog_id, $slug, $taxonomy ) { |
| 164 | 175 | $tax = get_taxonomy( $taxonomy ); |
| 165 | 176 | if ( ! current_user_can( $tax->cap->edit_terms ) ) { |
@@ -208,6 +219,12 @@ discard block |
||
| 208 | 219 | } |
| 209 | 220 | |
| 210 | 221 | // /sites/%s/taxonomies/%s/terms/slug:%s/delete -> $blog_id, $taxonomy, $slug |
| 222 | + |
|
| 223 | + /** |
|
| 224 | + * @param string $path |
|
| 225 | + * @param string $slug |
|
| 226 | + * @param string $taxonomy |
|
| 227 | + */ |
|
| 211 | 228 | function delete_term( $path, $blog_id, $slug, $taxonomy ) { |
| 212 | 229 | $term = get_term_by( 'slug', $slug, $taxonomy ); |
| 213 | 230 | $tax = get_taxonomy( $taxonomy ); |