AlternateText.php
8 years ago
Author.php
8 years ago
AuthorName.php
8 years ago
AvailableSizes.php
8 years ago
Caption.php
8 years ago
Comments.php
8 years ago
Date.php
8 years ago
Description.php
8 years ago
Dimensions.php
8 years ago
ExifData.php
8 years ago
FileName.php
8 years ago
FileSize.php
8 years ago
FullPath.php
8 years ago
Height.php
8 years ago
ID.php
8 years ago
Meta.php
8 years ago
MetaValue.php
8 years ago
MimeType.php
8 years ago
Parent.php
8 years ago
Taxonomy.php
8 years ago
Title.php
8 years ago
Width.php
8 years ago
Height.php
34 lines
| 1 | <?php |
| 2 | |
| 3 | if ( ! defined( 'ABSPATH' ) ) { |
| 4 | exit; |
| 5 | } |
| 6 | |
| 7 | /** |
| 8 | * @since 2.0 |
| 9 | */ |
| 10 | class AC_Column_Media_Height extends AC_Column_Media_MetaValue { |
| 11 | |
| 12 | public function __construct() { |
| 13 | parent::__construct(); |
| 14 | |
| 15 | $this->set_type( 'column-height' ); |
| 16 | $this->set_label( __( 'Height', 'codepress-admin-columns' ) ); |
| 17 | } |
| 18 | |
| 19 | protected function get_option_name() { |
| 20 | return 'height'; |
| 21 | } |
| 22 | |
| 23 | public function get_value( $id ) { |
| 24 | $value = $this->get_raw_value( $id ); |
| 25 | |
| 26 | if ( ! $value ) { |
| 27 | return $this->get_empty_char(); |
| 28 | } |
| 29 | |
| 30 | return $value . 'px'; |
| 31 | } |
| 32 | |
| 33 | } |
| 34 |