- Timestamp:
- 12/01/2014 12:32:19 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-terms-list-table.php
r30648 r30679 203 203 } 204 204 205 /** 206 * @param string $taxonomy 207 * @param array $terms 208 * @param array $children 209 * @param int $start 210 * @param int $per_page 211 * @param int $count 212 * @param int $parent 213 * @param int $level 214 */ 205 215 private function _rows( $taxonomy, $terms, &$children, $start, $per_page, &$count, $parent = 0, $level = 0 ) { 206 216 … … 251 261 } 252 262 263 /** 264 * @global string $taxonomy 265 * @staticvar string $row_class 266 * @param object $tag 267 * @param int $level 268 */ 253 269 public function single_row( $tag, $level = 0 ) { 254 270 global $taxonomy; … … 265 281 } 266 282 283 /** 284 * @param object $tag 285 * @return string 286 */ 267 287 public function column_cb( $tag ) { 268 288 $default_term = get_option( 'default_' . $this->screen->taxonomy ); … … 275 295 } 276 296 297 /** 298 * @param object $tag 299 * @return string 300 */ 277 301 public function column_name( $tag ) { 278 302 $taxonomy = $this->screen->taxonomy; … … 349 373 } 350 374 375 /** 376 * @param object $tag 377 * @return string 378 */ 351 379 public function column_description( $tag ) { 352 380 return $tag->description; 353 381 } 354 382 383 /** 384 * @param object $tag 385 * @return string 386 */ 355 387 public function column_slug( $tag ) { 356 388 /** This filter is documented in wp-admin/edit-tag-form.php */ … … 358 390 } 359 391 392 /** 393 * @param object $tag 394 * @return string 395 */ 360 396 public function column_posts( $tag ) { 361 397 $count = number_format_i18n( $tag->count ); … … 382 418 } 383 419 420 /** 421 * @param object $tag 422 * @return string 423 */ 384 424 public function column_links( $tag ) { 385 425 $count = number_format_i18n( $tag->count ); … … 389 429 } 390 430 431 /** 432 * @param object $tag 433 * @param string $column_name 434 * @return string 435 */ 391 436 public function column_default( $tag, $column_name ) { 392 437 /**
Note: See TracChangeset
for help on using the changeset viewer.