Height.php 550 Bytes
<?php

namespace AC\Column\Media;

use AC\Column;

/**
 * @since 2.0
 */
class Height extends Column\Media\MetaValue {

	public function __construct() {
		parent::__construct();

		$this->set_type( 'column-height' )
		     ->set_group( 'media-image' )
		     ->set_label( __( 'Height', 'codepress-admin-columns' ) );
	}

	protected function get_option_name() {
		return 'height';
	}

	public function get_value( $id ) {
		$value = $this->get_raw_value( $id );

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

		return $value . 'px';
	}

}