84 lines
3.1 KiB
PHP
84 lines
3.1 KiB
PHP
<?php
|
|
abstract class Jetpack_Tiled_Gallery_Item {
|
|
public $image;
|
|
|
|
public function __construct( $attachment_image, $needs_attachment_link, $grayscale ) {
|
|
$this->image = $attachment_image;
|
|
$this->grayscale = $grayscale;
|
|
|
|
$this->image_title = $this->image->post_title;
|
|
|
|
$this->image_alt = get_post_meta( $this->image->ID, '_wp_attachment_image_alt', true );
|
|
// If no Alt value, use the caption
|
|
if ( empty( $this->image_alt ) && ! empty( $this->image->post_excerpt ) ) {
|
|
$this->image_alt = trim( strip_tags( $this->image->post_excerpt ) );
|
|
}
|
|
// If still no Alt value, use the title
|
|
if ( empty( $this->image_alt ) && ! empty( $this->image->post_title ) ) {
|
|
$this->image_alt = trim( strip_tags( $this->image->post_title ) );
|
|
}
|
|
|
|
$this->orig_file = wp_get_attachment_url( $this->image->ID );
|
|
$this->link = $needs_attachment_link ? get_attachment_link( $this->image->ID ) : $this->orig_file;
|
|
|
|
$this->img_src = add_query_arg( array( 'w' => $this->image->width, 'h' => $this->image->height, 'crop' => true ), $this->orig_file );
|
|
|
|
}
|
|
|
|
public function fuzzy_image_meta() {
|
|
$meta = wp_get_attachment_metadata( $this->image->ID );
|
|
$img_meta = ( ! empty( $meta['image_meta'] ) ) ? (array) $meta['image_meta'] : array();
|
|
if ( ! empty( $img_meta ) ) {
|
|
foreach ( $img_meta as $k => $v ) {
|
|
if ( 'latitude' == $k || 'longitude' == $k )
|
|
unset( $img_meta[$k] );
|
|
}
|
|
}
|
|
|
|
return $img_meta;
|
|
}
|
|
|
|
public function meta_width() {
|
|
$meta = wp_get_attachment_metadata( $this->image->ID );
|
|
return isset( $meta['width'] ) ? intval( $meta['width'] ) : '';
|
|
}
|
|
|
|
public function meta_height() {
|
|
$meta = wp_get_attachment_metadata( $this->image->ID );
|
|
return isset( $meta['height'] ) ? intval( $meta['height'] ) : '';
|
|
}
|
|
|
|
public function medium_file() {
|
|
$medium_file_info = wp_get_attachment_image_src( $this->image->ID, 'medium' );
|
|
$medium_file = isset( $medium_file_info[0] ) ? $medium_file_info[0] : '';
|
|
return $medium_file;
|
|
}
|
|
|
|
public function large_file() {
|
|
$large_file_info = wp_get_attachment_image_src( $this->image->ID, 'large' );
|
|
$large_file = isset( $large_file_info[0] ) ? $large_file_info[0] : '';
|
|
return $large_file;
|
|
}
|
|
}
|
|
|
|
class Jetpack_Tiled_Gallery_Rectangular_Item extends Jetpack_Tiled_Gallery_Item {
|
|
public function __construct( $attachment_image, $needs_attachment_link, $grayscale ) {
|
|
parent::__construct( $attachment_image, $needs_attachment_link, $grayscale );
|
|
$this->img_src_grayscale = jetpack_photon_url( $this->img_src, array( 'filter' => 'grayscale' ) );
|
|
|
|
$this->size = 'large';
|
|
|
|
if ( $this->image->width < 250 )
|
|
$this->size = 'small';
|
|
}
|
|
}
|
|
|
|
class Jetpack_Tiled_Gallery_Square_Item extends Jetpack_Tiled_Gallery_Item {
|
|
public function __construct( $attachment_image, $needs_attachment_link, $grayscale ) {
|
|
parent::__construct( $attachment_image, $needs_attachment_link, $grayscale );
|
|
$this->img_src_grayscale = jetpack_photon_url( $this->img_src, array( 'filter' => 'grayscale', 'resize' => array( $this->image->width, $this->image->height ) ) );
|
|
}
|
|
}
|
|
|
|
class Jetpack_Tiled_Gallery_Circle_Item extends Jetpack_Tiled_Gallery_Square_Item {
|
|
}
|