class-aawp-ad.php
1 week ago
class-aawp.php
1 year ago
class-admin-compatibility.php
1 week ago
class-capability-manager.php
1 year ago
class-compatibility.php
1 week ago
class-inline-js.php
1 year ago
class-peepso-ad.php
1 week ago
class-peepso.php
1 week ago
class-peepso.php
222 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Peepso Compatibility. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | * @since 1.48.2 |
| 8 | */ |
| 9 | |
| 10 | namespace AdvancedAds\Compatibility; |
| 11 | |
| 12 | use AdvancedAds\Framework\Interfaces\Integration_Interface; |
| 13 | |
| 14 | defined( 'ABSPATH' ) || exit; |
| 15 | |
| 16 | /** |
| 17 | * Peepso. |
| 18 | * |
| 19 | * phpcs:disable WordPress.WP.I18n.TextDomainMismatch |
| 20 | * phpcs:disable WordPress.Security.EscapeOutput.OutputNotEscaped |
| 21 | */ |
| 22 | class Peepso implements Integration_Interface { |
| 23 | |
| 24 | /** |
| 25 | * Object. |
| 26 | * |
| 27 | * @var object |
| 28 | */ |
| 29 | private $object = null; |
| 30 | |
| 31 | /** |
| 32 | * Hook into WordPress. |
| 33 | * |
| 34 | * @return void |
| 35 | */ |
| 36 | public function hooks(): void { |
| 37 | add_filter( 'advanced-ads-ad-types', [ $this, 'ad_type' ], 100 ); |
| 38 | add_filter( 'advanced-ads-placement-types', [ $this, 'placement_type' ], 25 ); |
| 39 | } |
| 40 | |
| 41 | /** |
| 42 | * Add Peepso placement type to Advanced Ads. |
| 43 | * |
| 44 | * @param array $types placement types. |
| 45 | * |
| 46 | * @return array |
| 47 | */ |
| 48 | public function placement_type( $types ): array { |
| 49 | if ( class_exists( 'PeepSoAdvancedAdsPlugin' ) ) { |
| 50 | $types['peepso_stream'] = [ |
| 51 | 'title' => __( 'PeepSo Stream', 'peepso-advanced-ads' ), |
| 52 | 'description' => __( 'Display this ad in PeepSo Stream', 'advanced-ads' ), |
| 53 | 'image' => ADVADS_BASE_URL . 'assets/img/placement-types/peepso-stream-placement.png', |
| 54 | 'is_premium' => false, |
| 55 | ]; |
| 56 | } |
| 57 | |
| 58 | return $types; |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * Add Peepso ad type to Advanced Ads. |
| 63 | * |
| 64 | * @param array $types ad types. |
| 65 | * |
| 66 | * @return array |
| 67 | */ |
| 68 | public function ad_type( $types ): array { |
| 69 | if ( class_exists( 'PeepSoAdvancedAdsPlugin' ) && isset( $types['peepso'] ) && 'Advanced_Ads_Ad_Type_Abstract' === get_parent_class( $types['peepso'] ) ) { |
| 70 | $this->object = $types['peepso']; |
| 71 | unset( $types['peepso'] ); |
| 72 | |
| 73 | $types['peepso'] = [ |
| 74 | 'id' => 'peepso', |
| 75 | 'title' => $this->object->title, |
| 76 | 'description' => $this->object->description, |
| 77 | 'is_upgrade' => false, |
| 78 | 'classname' => Peepso_Ad::class, |
| 79 | 'render_parameters' => [ $this, 'render_parameters' ], |
| 80 | ]; |
| 81 | } |
| 82 | |
| 83 | return $types; |
| 84 | } |
| 85 | |
| 86 | /** |
| 87 | * Render Peepso parameters. |
| 88 | * |
| 89 | * @param AD $ad Ad object. |
| 90 | * |
| 91 | * @return void |
| 92 | */ |
| 93 | public function render_parameters( $ad ) { |
| 94 | $content = $ad->get_content(); |
| 95 | $title_override = $ad->get_prop( 'title_override' ) ?? ''; |
| 96 | $image_id = (int) ( $ad->get_prop( 'image_id' ) ?? 0 ); |
| 97 | $avatar_id = (int) ( $ad->get_prop( 'avatar_id' ) ?? 0 ); |
| 98 | $url = $ad->get_url() ?? '#'; |
| 99 | ?> |
| 100 | <script type="text/javascript"> |
| 101 | jQuery(function( $ ) { |
| 102 | $('#advanced-ads-ad-parameters-size').prev('span').hide(); |
| 103 | }); |
| 104 | </script> |
| 105 | <style type="text/css"> |
| 106 | #advads-image-preview img, #advads-avatar-preview img{ |
| 107 | padding:2px; |
| 108 | border:solid 1px #aaaaaa; |
| 109 | } |
| 110 | |
| 111 | #advads-image-preview { |
| 112 | width:500px; |
| 113 | } |
| 114 | |
| 115 | #advads-avatar-preview img { |
| 116 | height: auto; |
| 117 | max-width: 128px; |
| 118 | max-height:128px; |
| 119 | width: 100%; |
| 120 | } |
| 121 | |
| 122 | #advanced-ads-ad-parameters-size { |
| 123 | display:none; |
| 124 | } |
| 125 | |
| 126 | .description { |
| 127 | color:#aaaaaa; |
| 128 | } |
| 129 | </style> |
| 130 | |
| 131 | |
| 132 | <!-- Avatar --> |
| 133 | <h1> |
| 134 | <?php esc_html_e( 'Avatar', 'peepso-advanced-ads' ); ?> |
| 135 | <button href="#" class="advads_avatar_upload button button-secondary" type="button" data-uploader-title="<?php esc_html_e( 'Insert File', 'peepso-advanced-ads' ); ?>" data-uploader-button-text="<?php esc_html_e( 'Insert', 'peepso-advanced-ads' ); ?>" onclick="return false;"> |
| 136 | <?php esc_html_e( 'Change', 'peepso-advanced-ads' ); ?> |
| 137 | </button> |
| 138 | </h1> |
| 139 | |
| 140 | <div class="description"> |
| 141 | <?php esc_html_e( 'The uploaded image should be square and at least 128x128 pixels.', 'peepso-advanced-ads' ); ?> |
| 142 | </div> |
| 143 | |
| 144 | <div id="advads-avatar-preview"> |
| 145 | <?php echo $this->object->image_tag( $avatar_id ); ?> |
| 146 | </div> |
| 147 | |
| 148 | <input type="hidden" name="advanced_ad[output][avatar_id]" value="<?php echo esc_attr( (string) $avatar_id ); ?>" id="advads-avatar-id"/> |
| 149 | |
| 150 | <br class="clear" /> |
| 151 | |
| 152 | <hr> |
| 153 | |
| 154 | <!-- Title Override --> |
| 155 | <h1> |
| 156 | <?php esc_html_e( 'Title override', 'peepso-advanced-ads' ); ?> |
| 157 | </h1> |
| 158 | <div class="description"> |
| 159 | <?php esc_html_e( 'Optional. If nothing is provided, the general ad title will be used.', 'peepso-advanced-ads' ); ?> |
| 160 | </div> |
| 161 | |
| 162 | <input type="text" size="64" maxlength="128" id="advanced_ad[output][title_override]" name="advanced_ad[output][title_override]" value="<?php echo esc_attr( $title_override ); ?>" /> |
| 163 | |
| 164 | <!-- Content --> |
| 165 | <h1> |
| 166 | <?php esc_html_e( 'Content', 'peepso-advanced-ads' ); ?> |
| 167 | </h1> |
| 168 | |
| 169 | <div class="description"> |
| 170 | <?php |
| 171 | $description = __( 'Supported HTML tags:', 'peepso-advanced-ads' ) . ' <pre style="display:inline-block;margin:0;">' . htmlspecialchars( \PeepSoAdvancedAdsAdTypePeepSo::get_allowed_html() ) . '</pre>'; |
| 172 | if ( \PeepSo::get_option_new( 'advanced_ads_allow_all_tags' ) ) { |
| 173 | $description = __( 'All HTML tag enabled, proceed with extreme care', 'peepso-advanced-ads' ); |
| 174 | } |
| 175 | |
| 176 | echo $description; |
| 177 | ?> |
| 178 | </div> |
| 179 | |
| 180 | <textarea id="advads-content-plain" cols="100" rows="10" name="advanced_ad[content]"><?php echo esc_textarea( $content ); ?></textarea> |
| 181 | |
| 182 | <br class="clear" /> |
| 183 | |
| 184 | <hr> |
| 185 | |
| 186 | <!-- Image --> |
| 187 | <h1> |
| 188 | <?php esc_html_e( 'Image', 'peepso-advanced-ads' ); ?> |
| 189 | <button href="#" class="advads_image_upload button button-secondary" type="button" data-uploader-title="<?php esc_html_e( 'Insert File', 'peepso-advanced-ads' ); ?>" data-uploader-button-text="<?php esc_html_e( 'Insert', 'peepso-advanced-ads' ); ?>" onclick="return false;"> |
| 190 | <?php esc_html_e( 'Change', 'peepso-advanced-ads' ); ?> |
| 191 | </button> |
| 192 | </h1> |
| 193 | |
| 194 | <div class="description"> |
| 195 | <?php esc_html_e( 'Image will be displayed at full width of your Community stream (depending on theme, layout and screen size). For best results use an image at least 1000 pixels wide.', 'peepso-advanced-ads' ); ?> |
| 196 | </div> |
| 197 | |
| 198 | <div id="advads-image-preview"> |
| 199 | <?php echo $this->object->image_tag( $image_id ); ?> |
| 200 | </div> |
| 201 | |
| 202 | <input type="hidden" name="advanced_ad[output][image_id]" value="<?php echo esc_attr( (string) $image_id ); ?>" id="advads-image-id"/> |
| 203 | |
| 204 | <br class="clear" /> |
| 205 | |
| 206 | <hr> |
| 207 | |
| 208 | <h1> |
| 209 | <?php esc_html_e( 'URL', 'peepso-advanced-ads' ); ?> |
| 210 | </h1> |
| 211 | <div class="description"> |
| 212 | <?php esc_html_e( 'Clicking the image, avatar or title will open the link in a new window/tab. ', 'peepso-advanced-ads' ); ?> |
| 213 | </div> |
| 214 | |
| 215 | <input type="url" name="advanced_ad[url]" id="advads-url" value="<?php echo esc_url( $url ); ?>"/> |
| 216 | |
| 217 | <br class="clear" /> |
| 218 | |
| 219 | <?php |
| 220 | } |
| 221 | } |
| 222 |