Actions.php
9 years ago
AlternateText.php
9 years ago
AttachedTo.php
9 years ago
Author.php
9 years ago
AuthorName.php
9 years ago
AvailableSizes.php
9 years ago
Caption.php
9 years ago
Comments.php
9 years ago
Date.php
9 years ago
Description.php
9 years ago
Dimensions.php
9 years ago
ExifData.php
9 years ago
FileName.php
9 years ago
FileSize.php
9 years ago
FullPath.php
9 years ago
Height.php
9 years ago
ID.php
9 years ago
Meta.php
9 years ago
MimeType.php
9 years ago
Parent.php
9 years ago
Taxonomy.php
9 years ago
Title.php
9 years ago
Width.php
9 years ago
ExifData.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_ExifData extends AC_Column_Media_Meta { |
| 11 | |
| 12 | public function __construct() { |
| 13 | parent::__construct(); |
| 14 | |
| 15 | $this->set_type( 'column-exif_data' ); |
| 16 | $this->set_label( __( 'EXIF Data', 'codepress-admin-columns' ) ); |
| 17 | } |
| 18 | |
| 19 | public function get_raw_value( $id ) { |
| 20 | $value = parent::get_raw_value( $id ); |
| 21 | |
| 22 | return ! empty( $value['image_meta'] ) ? $value['image_meta'] : false; |
| 23 | } |
| 24 | |
| 25 | public function is_valid() { |
| 26 | return function_exists( 'exif_read_data' ); |
| 27 | } |
| 28 | |
| 29 | public function register_settings() { |
| 30 | $this->add_setting( new AC_Settings_Column_ExifData( $this ) ); |
| 31 | } |
| 32 | |
| 33 | } |
| 34 |