AuthorName.php
454 Bytes
<?php
namespace AC\Column\Comment;
use AC\Column;
/**
* @since 2.4.2
*/
class AuthorName extends Column {
public function __construct() {
$this->set_type( 'column-author_name' );
$this->set_label( __( 'Author Name', 'codepress-admin-columns' ) );
}
public function get_value( $id ) {
return $this->get_raw_value( $id );
}
public function get_raw_value( $id ) {
$comment = get_comment( $id );
return $comment->comment_author;
}
}