* @license GPL-2.0+ * @link http://robincornett.com * @copyright 2014 Robin Cornett Creative, LLC */ class Display_Featured_Image_Genesis_Output { /** * set parameters for scripts, etc. to run. * * @since 1.1.3 */ public function manage_output() { $fallback = get_option( 'displayfeaturedimage_default' ); if ( ( empty( $fallback ) && !is_home() && !is_singular() ) || ( in_array( get_post_type(), $this->get_skipped_posttypes() ) ) ) { return; } else { add_action( 'wp_enqueue_scripts', array( $this, 'load_scripts' ) ); add_filter( 'body_class', array( $this, 'add_body_class' ) ); } } /** * set and retreive variables for the featured image. * @return $item * * @since 1.1.0 */ protected function get_image_variables() { $item = new stdClass(); global $post; $fallback = get_option( 'displayfeaturedimage_default' ); $fallback_id = Display_Featured_Image_Genesis_Common::get_image_id( $fallback ); $frontpage = get_option( 'show_on_front' ); // either 'posts' or 'page' $postspage = get_option( 'page_for_posts' ); $postspage_image = get_post_thumbnail_id( $postspage ); if ( is_singular() ) { $originalthumb = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'displayfeaturedimage_backstretch' ); } $item->large = get_option( 'large_size_w' ); $item->medium = get_option( 'medium_size_w' ); $item->reduce = get_option( 'displayfeaturedimage_less_header', 0 ); // Set Featured Image Source if ( is_home() && $frontpage === 'page' && !empty( $postspage_image ) ) { // if on the blog page and it has a post_thumbnail $item->original = wp_get_attachment_image_src( $postspage_image, 'displayfeaturedimage_backstretch' ); } // any singular post/page/CPT with either a post_thumbnail larger than medium size OR there is no $fallback elseif ( is_singular() && ( $originalthumb[1] > $item->medium || empty( $fallback ) ) && !in_array( get_post_type(), $this->use_fallback_image() ) ) { $item->original = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'displayfeaturedimage_backstretch' ); } // otherwise use $fallback. should include !is_singular AND $fallback, and is_singular with either a small image or no post_thumbnail else { $item->original = wp_get_attachment_image_src( $fallback_id, 'displayfeaturedimage_backstretch' ); } // Set Post/Page Title if ( is_singular() && ! is_front_page() ) { $item->title = get_the_title(); } elseif ( is_home() && $frontpage === 'page' ) { $item->title = get_post( $postspage )->post_title; } else { $item->title = ''; } // declare this last so that $item->original is set. if ( !empty( $post->post_content ) ) { $item->content = strpos( $post->post_content, $item->original[0] ); } else { $item->content = ''; } return $item; } /** * skip certain post types * @return filter creates a new filter for themes/plugins to use to skip certain post types * * @since 1.0.1 */ public function get_skipped_posttypes() { return apply_filters( 'display_featured_image_genesis_skipped_posttypes', array( 'attachment', 'revision', 'nav_menu_item' ) ); } /** * use fallback image as backstretch * @return filter creates a new filter for themes/plugins to use to use the fallback image even if a large featured image is in place * * @since 1.2.1 */ public function use_fallback_image() { return apply_filters( 'display_featured_image_genesis_use_default', array( 'attachment', 'revision', 'nav_menu_item' ) ); } /** * enqueue plugin styles and scripts. * @return enqueue * * @since 1.0.0 */ public function load_scripts() { $item = $this->get_image_variables(); if ( ( !empty( $item->original ) && $item->content === false ) || ( !is_singular() && !empty( $item->original ) ) ) { wp_enqueue_style( 'displayfeaturedimage-style', plugins_url( 'includes/css/display-featured-image-genesis.css', dirname( __FILE__ ) ), array(), 1.0 ); if ( $item->original[1] > $item->large ) { wp_enqueue_script( 'displayfeaturedimage-backstretch', plugins_url( '/includes/js/backstretch.js', dirname( __FILE__ ) ), array( 'jquery' ), '1.0.0' ); wp_enqueue_script( 'displayfeaturedimage-backstretch-set', plugins_url( '/includes/js/backstretch-set.js', dirname( __FILE__ ) ), array( 'jquery', 'displayfeaturedimage-backstretch' ), '1.0.0' ); wp_localize_script( 'displayfeaturedimage-backstretch-set', 'BackStretchVars', array( 'src' => esc_url( $item->original[0] ), 'height' => esc_attr( $item->reduce ) ) ); add_action( 'genesis_after_header', array( $this, 'do_backstretch_image_title' ) ); } elseif ( ( $item->original[1] <= $item->large ) && ( $item->original[1] > $item->medium ) ) { add_action( 'genesis_before_entry', array( $this, 'do_large_image' ) ); // HTML5 add_action( 'genesis_before_post', array( $this, 'do_large_image' ) ); // XHTML } } } /** * set body class if featured images are displayed using the plugin * @param filter $classes body_class * * @since 1.0.0 */ public function add_body_class( $classes ) { global $post; $item = $this->get_image_variables(); if ( ( !empty( $item->original ) && $item->content === false ) || ( !is_singular() && !empty( $item->original ) ) ) { if ( $item->original[1] > $item->large ) { $classes[] = 'has-leader'; } elseif ( ( $item->original[1] <= $item->large ) && ( $item->original[1] > $item->medium ) ) { $classes[] = 'large-featured'; } } return $classes; } /** * backstretch image title (for images which are larger than Media Settings > Large ) * @return image * * @since 1.0.0 */ public function do_backstretch_image_title() { $item = $this->get_image_variables(); if ( is_singular() && !is_front_page() ) { remove_action( 'genesis_entry_header', 'genesis_do_post_title' ); // HTML5 remove_action( 'genesis_post_title', 'genesis_do_post_title' ); // XHTML } echo '
'; echo '

' . $item->title . '

'; echo '
'; } /** * Large image, centered above content * @return image * * @since 1.0.0 */ public function do_large_image() { global $post; echo get_the_post_thumbnail( $post->ID, 'large', array( 'class' => 'aligncenter featured', 'alt' => the_title_attribute( 'echo=0' ) ) ); } }