Comment
8 years ago
Link
8 years ago
Media
8 years ago
Post
8 years ago
User
8 years ago
Actions.php
8 years ago
AjaxValue.php
8 years ago
CustomField.php
8 years ago
Menu.php
8 years ago
Meta.php
8 years ago
Placeholder.php
8 years ago
RelationInterface.php
8 years ago
Taxonomy.php
8 years ago
WooCommercePlaceholder.php
8 years ago
Taxonomy.php
54 lines
| 1 | <?php |
| 2 | |
| 3 | if ( ! defined( 'ABSPATH' ) ) { |
| 4 | exit; |
| 5 | } |
| 6 | |
| 7 | /** |
| 8 | * Taxonomy column, displaying terms from a taxonomy for any object type (i.e. posts) |
| 9 | * supporting WordPress' native way of handling terms. |
| 10 | * |
| 11 | * @since 2.0 |
| 12 | */ |
| 13 | class AC_Column_Taxonomy extends AC_Column { |
| 14 | |
| 15 | public function __construct() { |
| 16 | $this->set_type( 'column-taxonomy' ); |
| 17 | $this->set_label( __( 'Taxonomy', 'codepress-admin-columns' ) ); |
| 18 | } |
| 19 | |
| 20 | public function get_taxonomy() { |
| 21 | return $this->get_option( 'taxonomy' ); |
| 22 | } |
| 23 | |
| 24 | public function get_value( $post_id ) { |
| 25 | $terms = ac_helper()->taxonomy->get_term_links( $this->get_raw_value( $post_id ), get_post_type( $post_id ) ); |
| 26 | |
| 27 | if ( empty( $terms ) ) { |
| 28 | return $this->get_empty_char(); |
| 29 | } |
| 30 | |
| 31 | return ac_helper()->string->enumeration_list( $terms, 'and' ); |
| 32 | } |
| 33 | |
| 34 | /** |
| 35 | * @param int $post_id |
| 36 | * |
| 37 | * @return array|false |
| 38 | */ |
| 39 | public function get_raw_value( $post_id ) { |
| 40 | $terms = get_the_terms( $post_id, $this->get_taxonomy() ); |
| 41 | |
| 42 | if ( ! $terms || is_wp_error( $terms ) ) { |
| 43 | return false; |
| 44 | } |
| 45 | |
| 46 | return $terms; |
| 47 | } |
| 48 | |
| 49 | public function register_settings() { |
| 50 | $this->add_setting( new AC_Settings_Column_Taxonomy( $this ) ); |
| 51 | } |
| 52 | |
| 53 | } |
| 54 |