Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
admin-columns-pro
/
codepress-admin-columns
/
classes
/
column
/
post
:
comment-status.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Column displaying whether an item is open for comments, i.e. whether users can * comment on this item. * * @since 2.0 */ class CPAC_Column_Post_Comment_Status extends CPAC_Column { /** * @see CPAC_Column::init() * @since 2.2.1 */ public function init() { parent::init(); // Properties $this->properties['type'] = 'column-comment_status'; $this->properties['label'] = __( 'Comment status', 'codepress-admin-columns' ); $this->properties['object_property'] = 'comment_status'; } /** * @see CPAC_Column::apply_conditional() * @since 2.2 */ function apply_conditional() { return post_type_supports( $this->storage_model->key, 'comments' ); } /** * @see CPAC_Column::get_value() * @since 2.0 */ function get_value( $post_id ) { $comment_status = $this->get_raw_value( $post_id ); $value = $this->get_asset_image( 'no.png', $comment_status ); if ( 'open' == $comment_status ) { $value = $this->get_asset_image( 'checkmark.png', $comment_status ); } return $value; } /** * @see CPAC_Column::get_raw_value() * @since 2.0.3 */ function get_raw_value( $post_id ) { return get_post_field( 'comment_status', $post_id, 'raw' ); } }