File "post.php"
Full Path: /www/wwwroot/shphe-en.com/wp-content/plugins/admin-columns-pro/codepress-admin-columns/classes/column/comment/post.php
File size: 1.93 KB
MIME-type: --
Charset: utf-8
<?php
/**
* CPAC_Column_Comment_Post
*
* @since 2.4.7
*/
class CPAC_Column_Comment_Post extends CPAC_Column {
/**
* @see CPAC_Column::init()
* @since 2.4.7
*/
public function init() {
parent::init();
// Properties
$this->properties['type'] = 'column-post';
$this->properties['label'] = __( 'Post', 'codepress-admin-columns' );
// Options
$this->options['post_property_display'] = 'title';
$this->options['post_link_to'] = 'edit_post';
}
/**
* @see CPAC_Column::get_value()
* @since 2.4.7
*/
public function get_value( $id ) {
$raw_value = $this->get_raw_value( $id );
// Get page to link to
switch ( $this->get_option( 'post_link_to' ) ) {
case 'edit_post':
$link = get_edit_post_link( $raw_value );
break;
case 'view_post':
$link = get_permalink( $raw_value );
break;
case 'edit_author':
$link = get_edit_user_link( get_post_field( 'post_author', $raw_value ) );
break;
case 'view_author':
$link = get_author_posts_url( get_post_field( 'post_author', $raw_value ) );
break;
}
// Get property of post to display
switch ( $this->get_option( 'post_property_display' ) ) {
case 'author':
$label = get_the_author_meta( 'display_name', get_post_field( 'post_author', $raw_value ) );
break;
case 'id':
$label = $raw_value;
break;
default:
$label = get_the_title( $raw_value );
break;
}
$value = $link ? "<a href='{$link}'>{$label}</a>" : $label;
return $value;
}
/**
* @see CPAC_Column::get_raw_value()
* @since 2.4.7
*/
public function get_raw_value( $id ) {
$comment = get_comment( $id );
return $comment->comment_post_ID;
}
/**
* @see CPAC_Column::display_settings()
* @since 2.4.7
*/
public function display_settings() {
$this->display_field_post_property_display();
$this->display_field_post_link_to();
}
}