2010-10-25 04:57:43 +02:00
< ? php
/**
2010-10-25 06:04:18 +02:00
* Terms List Table class .
2010-10-25 04:57:43 +02:00
*
* @ package WordPress
2010-10-25 06:04:18 +02:00
* @ subpackage List_Table
* @ since 3.1 . 0
2011-01-16 22:47:24 +01:00
* @ access private
2010-10-25 04:57:43 +02:00
*/
2010-11-04 09:07:03 +01:00
class WP_Terms_List_Table extends WP_List_Table {
2010-10-25 04:57:43 +02:00
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
public $callback_args ;
2010-10-25 04:57:43 +02:00
2015-01-12 17:23:22 +01:00
private $level ;
2014-08-10 04:18:17 +02:00
/**
* Constructor .
2014-09-04 17:23:16 +02:00
*
2014-08-10 04:18:17 +02:00
* @ since 3.1 . 0
2014-08-10 04:22:16 +02:00
* @ access public
2014-08-10 04:18:17 +02:00
*
* @ see WP_List_Table :: __construct () for more information on default arguments .
*
2015-05-28 23:41:30 +02:00
* @ global string $post_type
* @ global string $taxonomy
* @ global string $action
* @ global object $tax
*
2014-08-10 04:18:17 +02:00
* @ param array $args An associative array of arguments .
2014-09-04 17:23:16 +02:00
*/
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
public function __construct ( $args = array () ) {
2012-09-19 14:43:31 +02:00
global $post_type , $taxonomy , $action , $tax ;
2010-10-25 04:57:43 +02:00
2012-09-19 14:43:31 +02:00
parent :: __construct ( array (
'plural' => 'tags' ,
'singular' => 'tag' ,
'screen' => isset ( $args [ 'screen' ] ) ? $args [ 'screen' ] : null ,
) );
$action = $this -> screen -> action ;
$post_type = $this -> screen -> post_type ;
$taxonomy = $this -> screen -> taxonomy ;
2010-10-25 04:57:43 +02:00
if ( empty ( $taxonomy ) )
$taxonomy = 'post_tag' ;
2012-09-19 14:43:31 +02:00
if ( ! taxonomy_exists ( $taxonomy ) )
2010-10-25 04:57:43 +02:00
wp_die ( __ ( 'Invalid taxonomy' ) );
$tax = get_taxonomy ( $taxonomy );
2012-09-19 14:43:31 +02:00
// @todo Still needed? Maybe just the show_ui part.
2011-10-29 07:30:57 +02:00
if ( empty ( $post_type ) || ! in_array ( $post_type , get_post_types ( array ( 'show_ui' => true ) ) ) )
2010-10-25 04:57:43 +02:00
$post_type = 'post' ;
}
2015-05-29 22:17:26 +02:00
/**
*
* @ return bool
*/
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
public function ajax_user_can () {
2012-09-19 14:43:31 +02:00
return current_user_can ( get_taxonomy ( $this -> screen -> taxonomy ) -> cap -> manage_terms );
2010-10-25 04:57:43 +02:00
}
2015-05-29 23:32:24 +02:00
/**
* @ access public
*/
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
public function prepare_items () {
2012-09-19 14:43:31 +02:00
$tags_per_page = $this -> get_items_per_page ( 'edit_' . $this -> screen -> taxonomy . '_per_page' );
2010-10-25 04:57:43 +02:00
2012-09-19 14:43:31 +02:00
if ( 'post_tag' == $this -> screen -> taxonomy ) {
2014-02-04 08:56:12 +01:00
/**
* Filter the number of terms displayed per page for the Tags list table .
*
* @ since 2.8 . 0
*
* @ param int $tags_per_page Number of tags to be displayed . Default 20.
*/
2010-10-25 04:57:43 +02:00
$tags_per_page = apply_filters ( 'edit_tags_per_page' , $tags_per_page );
2014-02-04 08:56:12 +01:00
/**
* Filter the number of terms displayed per page for the Tags list table .
*
* @ since 2.7 . 0
* @ deprecated 2.8 . 0 Use edit_tags_per_page instead .
*
* @ param int $tags_per_page Number of tags to be displayed . Default 20.
*/
$tags_per_page = apply_filters ( 'tagsperpage' , $tags_per_page );
2012-09-19 14:43:31 +02:00
} elseif ( 'category' == $this -> screen -> taxonomy ) {
2014-02-04 08:56:12 +01:00
/**
* Filter the number of terms displayed per page for the Categories list table .
*
* @ since 2.8 . 0
*
* @ param int $tags_per_page Number of categories to be displayed . Default 20.
*/
$tags_per_page = apply_filters ( 'edit_categories_per_page' , $tags_per_page );
2010-10-25 04:57:43 +02:00
}
2013-03-01 18:00:25 +01:00
$search = ! empty ( $_REQUEST [ 's' ] ) ? trim ( wp_unslash ( $_REQUEST [ 's' ] ) ) : '' ;
2010-10-25 04:57:43 +02:00
$args = array (
'search' => $search ,
'page' => $this -> get_pagenum (),
'number' => $tags_per_page ,
);
if ( ! empty ( $_REQUEST [ 'orderby' ] ) )
2013-03-01 18:00:25 +01:00
$args [ 'orderby' ] = trim ( wp_unslash ( $_REQUEST [ 'orderby' ] ) );
2010-10-25 04:57:43 +02:00
if ( ! empty ( $_REQUEST [ 'order' ] ) )
2013-03-01 18:00:25 +01:00
$args [ 'order' ] = trim ( wp_unslash ( $_REQUEST [ 'order' ] ) );
2010-10-25 04:57:43 +02:00
$this -> callback_args = $args ;
$this -> set_pagination_args ( array (
2012-09-19 14:43:31 +02:00
'total_items' => wp_count_terms ( $this -> screen -> taxonomy , compact ( 'search' ) ),
2010-10-25 04:57:43 +02:00
'per_page' => $tags_per_page ,
) );
}
2011-01-06 05:11:14 +01:00
2015-05-29 22:17:26 +02:00
/**
*
* @ return bool
*/
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
public function has_items () {
2010-12-17 12:41:59 +01:00
// todo: populate $this->items in prepare_items()
return true ;
}
2010-10-25 04:57:43 +02:00
2015-05-29 23:32:24 +02:00
/**
* @ access public
*/
2015-01-03 07:20:21 +01:00
public function no_items () {
echo get_taxonomy ( $this -> screen -> taxonomy ) -> labels -> not_found ;
}
2015-05-29 22:17:26 +02:00
/**
*
* @ return array
*/
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
protected function get_bulk_actions () {
2010-10-25 04:57:43 +02:00
$actions = array ();
$actions [ 'delete' ] = __ ( 'Delete' );
return $actions ;
}
2015-05-29 22:17:26 +02:00
/**
*
* @ return string
*/
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
public function current_action () {
2010-10-25 04:57:43 +02:00
if ( isset ( $_REQUEST [ 'action' ] ) && isset ( $_REQUEST [ 'delete_tags' ] ) && ( 'delete' == $_REQUEST [ 'action' ] || 'delete' == $_REQUEST [ 'action2' ] ) )
return 'bulk-delete' ;
return parent :: current_action ();
}
2015-05-29 22:17:26 +02:00
/**
*
* @ return array
*/
2014-07-12 05:27:14 +02:00
public function get_columns () {
2010-10-25 04:57:43 +02:00
$columns = array (
'cb' => '<input type="checkbox" />' ,
2011-06-11 00:13:26 +02:00
'name' => _x ( 'Name' , 'term name' ),
2010-10-25 04:57:43 +02:00
'description' => __ ( 'Description' ),
'slug' => __ ( 'Slug' ),
);
2012-09-19 14:43:31 +02:00
if ( 'link_category' == $this -> screen -> taxonomy ) {
2010-10-25 04:57:43 +02:00
$columns [ 'links' ] = __ ( 'Links' );
2010-11-09 01:59:49 +01:00
} else {
2014-08-01 20:32:15 +02:00
$columns [ 'posts' ] = _x ( 'Count' , 'Number/count of items' );
2010-11-09 01:59:49 +01:00
}
2010-10-25 04:57:43 +02:00
return $columns ;
}
2015-05-29 22:17:26 +02:00
/**
*
* @ return array
*/
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
protected function get_sortable_columns () {
2010-10-25 04:57:43 +02:00
return array (
'name' => 'name' ,
'description' => 'description' ,
'slug' => 'slug' ,
'posts' => 'count' ,
'links' => 'count'
);
}
2015-05-29 23:32:24 +02:00
/**
* @ access public
*/
2014-07-14 00:09:16 +02:00
public function display_rows_or_placeholder () {
2012-09-19 14:43:31 +02:00
$taxonomy = $this -> screen -> taxonomy ;
2010-10-25 04:57:43 +02:00
$args = wp_parse_args ( $this -> callback_args , array (
'page' => 1 ,
'number' => 20 ,
'search' => '' ,
'hide_empty' => 0
) );
2014-05-13 07:37:14 +02:00
$page = $args [ 'page' ];
2014-07-17 11:14:16 +02:00
// Set variable because $args['number'] can be subsequently overridden.
2014-05-13 07:37:14 +02:00
$number = $args [ 'number' ];
2010-10-25 04:57:43 +02:00
$args [ 'offset' ] = $offset = ( $page - 1 ) * $number ;
2014-07-17 11:14:16 +02:00
// Convert it to table rows.
2010-10-25 04:57:43 +02:00
$count = 0 ;
2011-01-06 05:11:14 +01:00
2014-05-13 07:37:14 +02:00
if ( is_taxonomy_hierarchical ( $taxonomy ) && ! isset ( $args [ 'orderby' ] ) ) {
2010-10-25 04:57:43 +02:00
// We'll need the full set of terms then.
$args [ 'number' ] = $args [ 'offset' ] = 0 ;
2013-04-29 15:39:28 +02:00
}
$terms = get_terms ( $taxonomy , $args );
2010-10-25 04:57:43 +02:00
2015-06-12 20:55:25 +02:00
if ( empty ( $terms ) || ! is_array ( $terms ) ) {
2013-04-29 15:39:28 +02:00
echo '<tr class="no-items"><td class="colspanchange" colspan="' . $this -> get_column_count () . '">' ;
$this -> no_items ();
echo '</td></tr>' ;
return ;
}
2014-05-13 07:37:14 +02:00
if ( is_taxonomy_hierarchical ( $taxonomy ) && ! isset ( $args [ 'orderby' ] ) ) {
if ( ! empty ( $args [ 'search' ] ) ) { // Ignore children on searches.
2010-10-25 04:57:43 +02:00
$children = array ();
2014-05-13 07:37:14 +02:00
} else {
2010-10-25 04:57:43 +02:00
$children = _get_term_hierarchy ( $taxonomy );
2014-05-13 07:37:14 +02:00
}
2010-10-25 04:57:43 +02:00
// Some funky recursion to get the job done( Paging & parents mainly ) is contained within, Skip it for non-hierarchical taxonomies for performance sake
2013-04-29 03:10:50 +02:00
$this -> _rows ( $taxonomy , $terms , $children , $offset , $number , $count );
2010-10-25 04:57:43 +02:00
} else {
2014-05-13 07:37:14 +02:00
foreach ( $terms as $term ) {
2013-04-29 15:39:28 +02:00
$this -> single_row ( $term );
2014-05-13 07:37:14 +02:00
}
2010-10-25 04:57:43 +02:00
}
}
2014-12-01 01:33:23 +01:00
/**
* @ param string $taxonomy
* @ param array $terms
* @ param array $children
2015-05-29 22:17:26 +02:00
* @ param int $start
* @ param int $per_page
* @ param int $count
* @ param int $parent
* @ param int $level
2014-12-01 01:33:23 +01:00
*/
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
private function _rows ( $taxonomy , $terms , & $children , $start , $per_page , & $count , $parent = 0 , $level = 0 ) {
2010-10-25 04:57:43 +02:00
$end = $start + $per_page ;
foreach ( $terms as $key => $term ) {
if ( $count >= $end )
break ;
if ( $term -> parent != $parent && empty ( $_REQUEST [ 's' ] ) )
continue ;
// If the page starts in a subtree, print the parents.
if ( $count == $start && $term -> parent > 0 && empty ( $_REQUEST [ 's' ] ) ) {
$my_parents = $parent_ids = array ();
$p = $term -> parent ;
while ( $p ) {
$my_parent = get_term ( $p , $taxonomy );
$my_parents [] = $my_parent ;
$p = $my_parent -> parent ;
if ( in_array ( $p , $parent_ids ) ) // Prevent parent loops.
break ;
$parent_ids [] = $p ;
}
unset ( $parent_ids );
$num_parents = count ( $my_parents );
while ( $my_parent = array_pop ( $my_parents ) ) {
2013-04-29 03:10:50 +02:00
echo " \t " ;
2013-04-29 15:39:28 +02:00
$this -> single_row ( $my_parent , $level - $num_parents );
2010-10-25 04:57:43 +02:00
$num_parents -- ;
}
}
2013-04-29 03:10:50 +02:00
if ( $count >= $start ) {
echo " \t " ;
2013-04-29 15:39:28 +02:00
$this -> single_row ( $term , $level );
2013-04-29 03:10:50 +02:00
}
2010-10-25 04:57:43 +02:00
++ $count ;
unset ( $terms [ $key ] );
if ( isset ( $children [ $term -> term_id ] ) && empty ( $_REQUEST [ 's' ] ) )
2013-04-29 03:10:50 +02:00
$this -> _rows ( $taxonomy , $terms , $children , $start , $per_page , $count , $term -> term_id , $level + 1 );
2010-10-25 04:57:43 +02:00
}
}
2014-12-01 01:33:23 +01:00
/**
* @ global string $taxonomy
* @ param object $tag
* @ param int $level
*/
2014-07-14 00:09:16 +02:00
public function single_row ( $tag , $level = 0 ) {
2014-05-11 02:05:15 +02:00
global $taxonomy ;
$tag = sanitize_term ( $tag , $taxonomy );
2010-10-25 04:57:43 +02:00
$this -> level = $level ;
2015-01-14 23:14:22 +01:00
echo '<tr id="tag-' . $tag -> term_id . '">' ;
2013-04-29 03:10:50 +02:00
$this -> single_row_columns ( $tag );
2010-10-25 04:57:43 +02:00
echo '</tr>' ;
}
2014-12-01 01:33:23 +01:00
/**
* @ param object $tag
* @ return string
*/
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
public function column_cb ( $tag ) {
2012-09-19 14:43:31 +02:00
$default_term = get_option ( 'default_' . $this -> screen -> taxonomy );
2010-10-25 04:57:43 +02:00
2012-09-19 14:43:31 +02:00
if ( current_user_can ( get_taxonomy ( $this -> screen -> taxonomy ) -> cap -> delete_terms ) && $tag -> term_id != $default_term )
2012-07-25 18:18:14 +02:00
return '<label class="screen-reader-text" for="cb-select-' . $tag -> term_id . '">' . sprintf ( __ ( 'Select %s' ), $tag -> name ) . '</label>'
. '<input type="checkbox" name="delete_tags[]" value="' . $tag -> term_id . '" id="cb-select-' . $tag -> term_id . '" />' ;
2012-07-24 20:01:22 +02:00
return ' ' ;
2010-10-25 04:57:43 +02:00
}
2014-12-01 01:33:23 +01:00
/**
* @ param object $tag
* @ return string
*/
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
public function column_name ( $tag ) {
2012-09-19 14:43:31 +02:00
$taxonomy = $this -> screen -> taxonomy ;
2010-10-25 04:57:43 +02:00
$pad = str_repeat ( '— ' , max ( 0 , $this -> level ) );
2014-02-04 08:56:12 +01:00
/**
* Filter display of the term name in the terms list table .
*
* The default output may include padding due to the term ' s
* current level in the term hierarchy .
*
* @ since 2.5 . 0
*
* @ see WP_Terms_List_Table :: column_name ()
*
* @ param string $pad_tag_name The term name , padded if not top - level .
* @ param object $tag Term object .
*/
2010-10-25 04:57:43 +02:00
$name = apply_filters ( 'term_name' , $pad . ' ' . $tag -> name , $tag );
2014-02-04 08:56:12 +01:00
2010-10-25 04:57:43 +02:00
$qe_data = get_term ( $tag -> term_id , $taxonomy , OBJECT , 'edit' );
2012-09-19 14:43:31 +02:00
$edit_link = esc_url ( get_edit_term_link ( $tag -> term_id , $taxonomy , $this -> screen -> post_type ) );
2010-10-25 04:57:43 +02:00
$out = '<strong><a class="row-title" href="' . $edit_link . '" title="' . esc_attr ( sprintf ( __ ( 'Edit “%s”' ), $name ) ) . '">' . $name . '</a></strong><br />' ;
$out .= '<div class="hidden" id="inline_' . $qe_data -> term_id . '">' ;
$out .= '<div class="name">' . $qe_data -> name . '</div>' ;
2014-02-04 08:56:12 +01:00
/** This filter is documented in wp-admin/edit-tag-form.php */
2010-10-25 04:57:43 +02:00
$out .= '<div class="slug">' . apply_filters ( 'editable_slug' , $qe_data -> slug ) . '</div>' ;
2011-05-24 01:33:30 +02:00
$out .= '<div class="parent">' . $qe_data -> parent . '</div></div>' ;
2010-10-25 04:57:43 +02:00
return $out ;
}
2015-05-29 04:41:25 +02:00
/**
2015-07-13 20:22:25 +02:00
* Gets the name of the default primary column .
2015-05-29 04:41:25 +02:00
*
* @ since 4.3 . 0
* @ access protected
*
2015-05-31 03:44:26 +02:00
* @ return string Name of the default primary column , in this case , 'name' .
2015-05-29 04:41:25 +02:00
*/
protected function get_default_primary_column_name () {
return 'name' ;
}
/**
2015-07-13 20:22:25 +02:00
* Generates and displays row action links .
2015-05-29 04:41:25 +02:00
*
* @ since 4.3 . 0
* @ access protected
*
2015-05-31 03:44:26 +02:00
* @ param object $tag Tag being acted upon .
* @ param string $column_name Current column name .
* @ param string $primary Primary column name .
* @ return string Row actions output for terms .
2015-05-29 04:41:25 +02:00
*/
protected function handle_row_actions ( $tag , $column_name , $primary ) {
2015-07-14 19:47:24 +02:00
if ( $primary !== $column_name ) {
return '' ;
}
2015-05-29 04:41:25 +02:00
$taxonomy = $this -> screen -> taxonomy ;
$tax = get_taxonomy ( $taxonomy );
$default_term = get_option ( 'default_' . $taxonomy );
$edit_link = esc_url ( get_edit_term_link ( $tag -> term_id , $taxonomy , $this -> screen -> post_type ) );
2015-07-14 19:47:24 +02:00
$actions = array ();
if ( current_user_can ( $tax -> cap -> edit_terms ) ) {
$actions [ 'edit' ] = '<a href="' . $edit_link . '">' . __ ( 'Edit' ) . '</a>' ;
$actions [ 'inline hide-if-no-js' ] = '<a href="#" class="editinline">' . __ ( 'Quick Edit' ) . '</a>' ;
}
if ( current_user_can ( $tax -> cap -> delete_terms ) && $tag -> term_id != $default_term )
$actions [ 'delete' ] = " <a class='delete-tag' href=' " . wp_nonce_url ( " edit-tags.php?action=delete&taxonomy= $taxonomy &tag_ID= $tag->term_id " , 'delete-tag_' . $tag -> term_id ) . " '> " . __ ( 'Delete' ) . " </a> " ;
if ( $tax -> public )
$actions [ 'view' ] = '<a href="' . get_term_link ( $tag ) . '">' . __ ( 'View' ) . '</a>' ;
2015-05-29 04:41:25 +02:00
2015-07-14 19:47:24 +02:00
/**
* Filter the action links displayed for each term in the Tags list table .
*
* @ since 2.8 . 0
* @ deprecated 3.0 . 0 Use { $taxonomy } _row_actions instead .
*
* @ param array $actions An array of action links to be displayed . Default
* 'Edit' , 'Quick Edit' , 'Delete' , and 'View' .
* @ param object $tag Term object .
*/
$actions = apply_filters ( 'tag_row_actions' , $actions , $tag );
2015-05-29 04:41:25 +02:00
2015-07-14 19:47:24 +02:00
/**
* Filter the action links displayed for each term in the terms list table .
*
* The dynamic portion of the hook name , `$taxonomy` , refers to the taxonomy slug .
*
* @ since 3.0 . 0
*
* @ param array $actions An array of action links to be displayed . Default
* 'Edit' , 'Quick Edit' , 'Delete' , and 'View' .
* @ param object $tag Term object .
*/
$actions = apply_filters ( " { $taxonomy } _row_actions " , $actions , $tag );
2015-05-29 04:41:25 +02:00
2015-07-14 19:47:24 +02:00
return $this -> row_actions ( $actions );
2015-05-29 04:41:25 +02:00
}
2014-12-01 01:33:23 +01:00
/**
* @ param object $tag
* @ return string
*/
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
public function column_description ( $tag ) {
2010-10-25 04:57:43 +02:00
return $tag -> description ;
}
2014-12-01 01:33:23 +01:00
/**
* @ param object $tag
* @ return string
*/
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
public function column_slug ( $tag ) {
2014-02-04 08:56:12 +01:00
/** This filter is documented in wp-admin/edit-tag-form.php */
2010-10-25 04:57:43 +02:00
return apply_filters ( 'editable_slug' , $tag -> slug );
}
2014-12-01 01:33:23 +01:00
/**
* @ param object $tag
* @ return string
*/
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
public function column_posts ( $tag ) {
2010-10-25 04:57:43 +02:00
$count = number_format_i18n ( $tag -> count );
2012-09-19 14:43:31 +02:00
$tax = get_taxonomy ( $this -> screen -> taxonomy );
2010-11-25 02:39:34 +01:00
2012-09-19 14:43:31 +02:00
$ptype_object = get_post_type_object ( $this -> screen -> post_type );
2011-11-21 21:44:48 +01:00
if ( ! $ptype_object -> show_ui )
2010-11-25 02:39:34 +01:00
return $count ;
2010-11-25 00:29:13 +01:00
if ( $tax -> query_var ) {
2010-11-25 02:39:34 +01:00
$args = array ( $tax -> query_var => $tag -> slug );
} else {
$args = array ( 'taxonomy' => $tax -> name , 'term' => $tag -> slug );
2010-10-25 04:57:43 +02:00
}
2012-09-19 14:43:31 +02:00
if ( 'post' != $this -> screen -> post_type )
$args [ 'post_type' ] = $this -> screen -> post_type ;
2010-11-25 02:39:34 +01:00
2012-09-22 00:52:54 +02:00
if ( 'attachment' == $this -> screen -> post_type )
return " <a href=' " . esc_url ( add_query_arg ( $args , 'upload.php' ) ) . " '> $count </a> " ;
2011-05-24 01:33:30 +02:00
return " <a href=' " . esc_url ( add_query_arg ( $args , 'edit.php' ) ) . " '> $count </a> " ;
2010-10-25 04:57:43 +02:00
}
2014-12-01 01:33:23 +01:00
/**
* @ param object $tag
* @ return string
*/
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
public function column_links ( $tag ) {
2010-10-25 04:57:43 +02:00
$count = number_format_i18n ( $tag -> count );
2010-12-27 17:57:19 +01:00
if ( $count )
$count = " <a href='link-manager.php?cat_id= $tag->term_id '> $count </a> " ;
2010-10-25 04:57:43 +02:00
return $count ;
}
2014-12-01 01:33:23 +01:00
/**
* @ param object $tag
* @ param string $column_name
* @ return string
*/
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
public function column_default ( $tag , $column_name ) {
2014-02-04 08:56:12 +01:00
/**
* Filter the displayed columns in the terms list table .
*
2014-11-30 12:28:24 +01:00
* The dynamic portion of the hook name , `$this->screen->taxonomy` ,
2014-02-04 08:56:12 +01:00
* refers to the slug of the current taxonomy .
*
* @ since 2.8 . 0
*
* @ param string $string Blank string .
* @ param string $column_name Name of the column .
* @ param int $term_id Term ID .
*/
2012-09-19 14:43:31 +02:00
return apply_filters ( " manage_ { $this -> screen -> taxonomy } _custom_column " , '' , $column_name , $tag -> term_id );
2010-10-25 04:57:43 +02:00
}
/**
* Outputs the hidden row displayed when inline editing
*
* @ since 3.1 . 0
*/
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
public function inline_edit () {
2012-09-19 14:43:31 +02:00
$tax = get_taxonomy ( $this -> screen -> taxonomy );
2010-10-25 04:57:43 +02:00
if ( ! current_user_can ( $tax -> cap -> edit_terms ) )
return ;
2010-11-14 19:00:09 +01:00
?>
2010-10-25 04:57:43 +02:00
2015-01-16 05:16:24 +01:00
< form method = " get " >< table style = " display: none " >< tbody id = " inlineedit " >
2010-11-14 19:00:09 +01:00
< tr id = " inline-edit " class = " inline-edit-row " style = " display: none " >< td colspan = " <?php echo $this->get_column_count (); ?> " class = " colspanchange " >
2010-10-25 04:57:43 +02:00
< fieldset >< div class = " inline-edit-col " >
< h4 >< ? php _e ( 'Quick Edit' ); ?> </h4>
< label >
2011-06-11 00:13:26 +02:00
< span class = " title " >< ? php _ex ( 'Name' , 'term name' ); ?> </span>
2010-10-25 04:57:43 +02:00
< span class = " input-text-wrap " >< input type = " text " name = " name " class = " ptitle " value = " " /></ span >
</ label >
< ? php if ( ! global_terms_enabled () ) { ?>
< label >
< span class = " title " >< ? php _e ( 'Slug' ); ?> </span>
< span class = " input-text-wrap " >< input type = " text " name = " slug " class = " ptitle " value = " " /></ span >
</ label >
< ? php } ?>
</ div ></ fieldset >
< ? php
$core_columns = array ( 'cb' => true , 'description' => true , 'name' => true , 'slug' => true , 'posts' => true );
2010-11-14 19:00:09 +01:00
list ( $columns ) = $this -> get_column_info ();
2010-10-25 04:57:43 +02:00
foreach ( $columns as $column_name => $column_display_name ) {
if ( isset ( $core_columns [ $column_name ] ) )
continue ;
2010-12-17 14:20:17 +01:00
2014-02-04 08:56:12 +01:00
/** This action is documented in wp-admin/includes/class-wp-posts-list-table.php */
2012-09-19 14:43:31 +02:00
do_action ( 'quick_edit_custom_box' , $column_name , 'edit-tags' , $this -> screen -> taxonomy );
2010-10-25 04:57:43 +02:00
}
?>
< p class = " inline-edit-save submit " >
2015-02-04 04:46:24 +01:00
< a href = " #inline-edit " class = " cancel button-secondary alignleft " >< ? php _e ( 'Cancel' ); ?> </a>
< a href = " #inline-edit " class = " save button-primary alignright " >< ? php echo $tax -> labels -> update_item ; ?> </a>
2012-09-26 21:57:44 +02:00
< span class = " spinner " ></ span >
2010-10-25 04:57:43 +02:00
< span class = " error " style = " display:none; " ></ span >
< ? php wp_nonce_field ( 'taxinlineeditnonce' , '_inline_edit' , false ); ?>
2012-09-19 14:43:31 +02:00
< input type = " hidden " name = " taxonomy " value = " <?php echo esc_attr( $this->screen ->taxonomy ); ?> " />
< input type = " hidden " name = " post_type " value = " <?php echo esc_attr( $this->screen ->post_type ); ?> " />
2010-10-25 04:57:43 +02:00
< br class = " clear " />
</ p >
</ td ></ tr >
</ tbody ></ table ></ form >
< ? php
}
}