EDD_SL_Plugin_Updater.php
6 years ago
ad-ajax.php
6 years ago
ad-debug.php
8 years ago
ad-health-notices.php
6 years ago
ad-model.php
8 years ago
ad-select.php
9 years ago
ad.php
6 years ago
ad_ajax_callbacks.php
6 years ago
ad_group.php
6 years ago
ad_placements.php
6 years ago
ad_type_abstract.php
8 years ago
ad_type_content.php
6 years ago
ad_type_dummy.php
6 years ago
ad_type_group.php
8 years ago
ad_type_image.php
6 years ago
ad_type_plain.php
6 years ago
checks.php
6 years ago
compatibility.php
6 years ago
display-conditions.php
6 years ago
filesystem.php
8 years ago
frontend_checks.php
6 years ago
plugin.php
6 years ago
upgrades.php
6 years ago
utils.php
6 years ago
visitor-conditions.php
6 years ago
widget.php
6 years ago
ad_type_image.php
214 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Advanced Ads Image Ad Type |
| 4 | * |
| 5 | * @package Advanced_Ads |
| 6 | * @author Thomas Maier <thomas.maier@webgilde.com> |
| 7 | * @license GPL-2.0+ |
| 8 | * @link http://webgilde.com |
| 9 | * @copyright 2015 Thomas Maier, webgilde GmbH |
| 10 | * @since 1.6.10 |
| 11 | * |
| 12 | * Class containing information about the content ad type |
| 13 | * this should also work as an example for other ad types |
| 14 | * |
| 15 | */ |
| 16 | class Advanced_Ads_Ad_Type_Image extends Advanced_Ads_Ad_Type_Abstract{ |
| 17 | |
| 18 | /** |
| 19 | * ID - internal type of the ad type |
| 20 | * |
| 21 | * must be static so set your own ad type ID here |
| 22 | * use slug like format, only lower case, underscores and hyphens |
| 23 | * |
| 24 | * @since 1.6.10 |
| 25 | */ |
| 26 | public $ID = 'image'; |
| 27 | |
| 28 | /** |
| 29 | * set basic attributes |
| 30 | * |
| 31 | * @since 1.6.10 |
| 32 | */ |
| 33 | public function __construct() { |
| 34 | $this->title = __( 'Image Ad', 'advanced-ads' ); |
| 35 | $this->description = __( 'Ads in various image formats.', 'advanced-ads' ); |
| 36 | $this->parameters = array( |
| 37 | 'image_url' => '', |
| 38 | 'image_title' => '', |
| 39 | 'image_alt' => '', |
| 40 | ); |
| 41 | } |
| 42 | |
| 43 | /** |
| 44 | * output for the ad parameters metabox |
| 45 | * |
| 46 | * @param obj $ad ad object |
| 47 | * @since 1.6.10 |
| 48 | */ |
| 49 | public function render_parameters($ad){ |
| 50 | // load tinymc content exitor |
| 51 | $id = ( isset( $ad->output['image_id'] ) ) ? $ad->output['image_id'] : ''; |
| 52 | $url = ( isset( $ad->url ) ) ? esc_attr( $ad->url ) : ''; |
| 53 | |
| 54 | ?><p><button href="#" class="advads_image_upload button button-secondary" type="button" data-uploader-title="<?php |
| 55 | _e( 'Insert File', 'advanced-ads' ); ?>" data-uploader-button-text="<?php _e( 'Insert', 'advanced-ads' ); ?>" onclick="return false;"><?php _e( 'select image', 'advanced-ads' ); ?></button> |
| 56 | <a id="advads-image-edit-link" href="<?php if( $id ){ echo get_edit_post_link( $id ); } ?>"><?php _e('edit', 'advanced-ads' ); ?></a> |
| 57 | </p> |
| 58 | <input type="hidden" name="advanced_ad[output][image_id]" value="<?php echo $id; ?>" id="advads-image-id"/> |
| 59 | <div id="advads-image-preview"> |
| 60 | <?php $this->create_image_tag( $id, $ad ); ?> |
| 61 | </div> |
| 62 | <?php // don’t show if tracking plugin enabled |
| 63 | if ( ! defined( 'AAT_VERSION' ) ) : ?> |
| 64 | <label for="advads-url" class="label"><?php _e( 'URL', 'advanced-ads' ); ?></label> |
| 65 | <div> |
| 66 | <input type="url" name="advanced_ad[url]" id="advads-url" class="advads-ad-url" value="<?php echo $url; ?>" placeholder="https://www.example.com/"/> |
| 67 | <p class="description"> |
| 68 | <?php _e( 'Link to target site including http(s)', 'advanced-ads' ); ?> |
| 69 | </p> |
| 70 | </div> |
| 71 | <hr/><?php |
| 72 | endif; |
| 73 | } |
| 74 | |
| 75 | /** |
| 76 | * render image tag |
| 77 | * |
| 78 | * @param int $attachment_id post id of the image |
| 79 | * @param obj $ad ad object, since 1.8.21 |
| 80 | * @since 1.6.10 |
| 81 | */ |
| 82 | public function create_image_tag( $attachment_id, $ad ){ |
| 83 | |
| 84 | $image = wp_get_attachment_image_src( $attachment_id, 'full' ); |
| 85 | $style = ''; |
| 86 | |
| 87 | if ( $image ) { |
| 88 | list( $src, $width, $height ) = $image; |
| 89 | // override image sizes with the sizes given in ad options, but in frontend only |
| 90 | if( ! is_admin() || ( // is frontend |
| 91 | is_admin() && defined( 'DOING_AJAX' ) && DOING_AJAX ) ){ // is AJAX call (cache-busting) |
| 92 | $width = isset( $ad->width ) ? absint( $ad->width ) : $width; |
| 93 | $height = isset( $ad->height ) ? absint( $ad->height ) : $height; |
| 94 | } |
| 95 | $hwstring = image_hwstring($width, $height); |
| 96 | $attachment = get_post($attachment_id); |
| 97 | $alt = trim(esc_textarea( get_post_meta($attachment_id, '_wp_attachment_image_alt', true) )); |
| 98 | |
| 99 | global $wp_current_filter; |
| 100 | |
| 101 | $more_attributes = $srcset = $sizes = ''; |
| 102 | // create srcset and sizes attributes if we are in the the_content filter and in WordPress 4.4 |
| 103 | if( isset( $wp_current_filter ) |
| 104 | && in_array( 'the_content', $wp_current_filter ) |
| 105 | && ! defined( 'ADVADS_DISABLE_RESPONSIVE_IMAGES' )){ |
| 106 | if( function_exists( 'wp_get_attachment_image_srcset' ) ){ |
| 107 | $srcset = wp_get_attachment_image_srcset( $attachment_id, 'full' ); |
| 108 | } |
| 109 | if( function_exists( 'wp_get_attachment_image_sizes' ) ){ |
| 110 | $sizes = wp_get_attachment_image_sizes( $attachment_id, 'full' ); |
| 111 | } |
| 112 | if ( $srcset && $sizes ) { |
| 113 | $more_attributes .= ' srcset=\'' . $srcset . '\' sizes=\'' . $sizes . '\''; |
| 114 | } |
| 115 | } |
| 116 | |
| 117 | // add css rule to be able to center the ad |
| 118 | if( isset( $ad->output['position'] ) && 'center' === $ad->output['position'] ){ |
| 119 | $style .= 'display: inline-block;'; |
| 120 | } |
| 121 | |
| 122 | $style = apply_filters( 'advanced-ads-ad-image-tag-style', $style ); |
| 123 | $style = '' !== $style ? 'style="' . $style . '"' : ''; |
| 124 | |
| 125 | $more_attributes = apply_filters( 'advanced-ads-ad-image-tag-attributes', $more_attributes ); |
| 126 | |
| 127 | echo rtrim("<img $hwstring") . " src='$src' alt='$alt' $more_attributes $style/>"; |
| 128 | } |
| 129 | } |
| 130 | |
| 131 | /** |
| 132 | * render image icon for overview pages |
| 133 | * |
| 134 | * @param int $attachment_id post id of the image |
| 135 | * @since 1.7.4 |
| 136 | */ |
| 137 | public function create_image_icon( $attachment_id ){ |
| 138 | |
| 139 | $image = wp_get_attachment_image_src( $attachment_id, 'medium', true ); |
| 140 | if ( $image ) { |
| 141 | list( $src, $width, $height ) = $image; |
| 142 | |
| 143 | // scale down width or height to max 100px |
| 144 | if( $width > $height ){ |
| 145 | $height = absint( $height / ( $width / 100 ) ); |
| 146 | $width = 100; |
| 147 | } else { |
| 148 | $width = absint( $width / ( $height / 100 ) ); |
| 149 | $height = 100; |
| 150 | } |
| 151 | |
| 152 | $hwstring = trim( image_hwstring($width, $height) ); |
| 153 | $attachment = get_post($attachment_id); |
| 154 | $alt = trim(strip_tags( get_post_meta($attachment_id, '_wp_attachment_image_alt', true) )); |
| 155 | |
| 156 | echo "<img $hwstring src='$src' alt='$alt' />"; |
| 157 | } |
| 158 | } |
| 159 | |
| 160 | /** |
| 161 | * prepare the ads frontend output by adding <object> tags |
| 162 | * |
| 163 | * @param obj $ad ad object |
| 164 | * @return str $content ad content prepared for frontend output |
| 165 | * @since 1.6.10. |
| 166 | */ |
| 167 | public function prepare_output($ad){ |
| 168 | |
| 169 | $id = ( isset( $ad->output['image_id'] ) ) ? absint( $ad->output['image_id'] ) : ''; |
| 170 | $url = ( isset( $ad->url ) ) ? esc_url( $ad->url ) : ''; |
| 171 | // get general target setting |
| 172 | $options = Advanced_Ads::get_instance()->options(); |
| 173 | $target_blank = !empty( $options['target-blank'] ) ? ' target="_blank"' : ''; |
| 174 | |
| 175 | ob_start(); |
| 176 | if( ! defined( 'AAT_VERSION' ) && $url ){ echo '<a href="'. $url .'"'.$target_blank.'>'; } |
| 177 | echo $this->create_image_tag( $id, $ad ); |
| 178 | if( ! defined( 'AAT_VERSION' ) && $url ){ echo '</a>'; } |
| 179 | |
| 180 | return ob_get_clean(); |
| 181 | } |
| 182 | |
| 183 | /** |
| 184 | * Generate a string with the original image size for output in the backend |
| 185 | * Only show, if different from entered image sizes |
| 186 | * |
| 187 | * @param obj $ad Advanced_Ads_Ad |
| 188 | * @return str empty, if the entered size is the same as the original size |
| 189 | */ |
| 190 | public static function show_original_image_size( $ad ){ |
| 191 | |
| 192 | $attachment_id = ( isset( $ad->output['image_id'] ) ) ? absint( $ad->output['image_id'] ) : ''; |
| 193 | |
| 194 | $image = wp_get_attachment_image_src( $attachment_id, 'full' ); |
| 195 | |
| 196 | if ( $image ) { |
| 197 | list( $src, $width, $height ) = $image; |
| 198 | ?><p class="description"><?php if( ( isset( $ad->width ) && $ad->width != $width ) |
| 199 | || ( isset( $ad->height ) && $ad->height != $height ) ) { |
| 200 | printf( |
| 201 | /** |
| 202 | * translators: $s is a size string like "728 x 90". |
| 203 | * This string shows up on the ad edit page of image ads if the size entered for the ad is different from the size of the uploaded image. |
| 204 | */ |
| 205 | esc_attr__( 'Original size: %s', 'advanced-ads' ), $width . ' x ' . $height ); ?></p><?php |
| 206 | } |
| 207 | } |
| 208 | |
| 209 | return ''; |
| 210 | |
| 211 | } |
| 212 | |
| 213 | } |
| 214 |