type-amp.php
1 year ago
type-content.php
10 months ago
type-dummy.php
1 year ago
type-gam.php
1 year ago
type-group.php
1 year ago
type-image.php
1 year ago
type-plain.php
1 year ago
type-unknown.php
1 year ago
type-plain.php
236 lines
| 1 | <?php |
| 2 | /** |
| 3 | * This class represents the "Plain" ad type. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | * @since 1.48.0 |
| 8 | */ |
| 9 | |
| 10 | namespace AdvancedAds\Ads\Types; |
| 11 | |
| 12 | use AdvancedAds\Ads\Ad_Plain; |
| 13 | use AdvancedAds\Interfaces\Ad_Type; |
| 14 | use AdvancedAds\Utilities\Conditional; |
| 15 | |
| 16 | defined( 'ABSPATH' ) || exit; |
| 17 | |
| 18 | /** |
| 19 | * Type Plain. |
| 20 | */ |
| 21 | class Plain implements Ad_Type { |
| 22 | |
| 23 | /** |
| 24 | * Get the unique identifier (ID) of the ad type. |
| 25 | * |
| 26 | * @return string The unique ID of the ad type. |
| 27 | */ |
| 28 | public function get_id(): string { |
| 29 | return 'plain'; |
| 30 | } |
| 31 | |
| 32 | /** |
| 33 | * Get the class name of the object as a string. |
| 34 | * |
| 35 | * @return string |
| 36 | */ |
| 37 | public function get_classname(): string { |
| 38 | return Ad_Plain::class; |
| 39 | } |
| 40 | |
| 41 | /** |
| 42 | * Get the title or name of the ad type. |
| 43 | * |
| 44 | * @return string The title of the ad type. |
| 45 | */ |
| 46 | public function get_title(): string { |
| 47 | return __( 'Plain Text and Code', 'advanced-ads' ); |
| 48 | } |
| 49 | |
| 50 | /** |
| 51 | * Get a description of the ad type. |
| 52 | * |
| 53 | * @return string The description of the ad type. |
| 54 | */ |
| 55 | public function get_description(): string { |
| 56 | return __( 'Any ad network, Amazon, customized AdSense codes, shortcodes, and code like JavaScript, HTML or PHP.', 'advanced-ads' ); |
| 57 | } |
| 58 | |
| 59 | /** |
| 60 | * Check if this ad type requires premium. |
| 61 | * |
| 62 | * @return bool True if premium is required; otherwise, false. |
| 63 | */ |
| 64 | public function is_premium(): bool { |
| 65 | return false; |
| 66 | } |
| 67 | |
| 68 | /** |
| 69 | * Get the URL for upgrading to this ad type. |
| 70 | * |
| 71 | * @return string The upgrade URL for the ad type. |
| 72 | */ |
| 73 | public function get_upgrade_url(): string { |
| 74 | return ''; |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * Get the URL for upgrading to this ad type. |
| 79 | * |
| 80 | * @return string The upgrade URL for the ad type. |
| 81 | */ |
| 82 | public function get_image(): string { |
| 83 | return ADVADS_BASE_URL . 'assets/img/ad-types/plain.svg'; |
| 84 | } |
| 85 | |
| 86 | /** |
| 87 | * Check if this ad type has size parameters. |
| 88 | * |
| 89 | * @return bool True if has size parameters; otherwise, false. |
| 90 | */ |
| 91 | public function has_size(): bool { |
| 92 | return true; |
| 93 | } |
| 94 | |
| 95 | /** |
| 96 | * Output for the ad parameters metabox |
| 97 | * |
| 98 | * @param Ad_Plain $ad Ad instance. |
| 99 | * |
| 100 | * @return void |
| 101 | */ |
| 102 | public function render_parameters( $ad ): void { |
| 103 | $content = $ad->get_content() ?? ''; |
| 104 | ?> |
| 105 | <p class="description"> |
| 106 | <?php esc_html_e( 'Insert plain text or code into this field.', 'advanced-ads' ); ?> |
| 107 | </p> |
| 108 | <?php $this->error_unfiltered_html( $ad ); ?> |
| 109 | <textarea |
| 110 | id="advads-ad-content-plain" |
| 111 | cols="40" |
| 112 | rows="10" |
| 113 | name="advanced_ad[content]" |
| 114 | ><?php echo esc_textarea( $content ); ?></textarea> |
| 115 | <?php |
| 116 | include ADVADS_ABSPATH . 'views/admin/metaboxes/ads/ad-info-after-textarea.php'; |
| 117 | |
| 118 | $this->render_php_allow( $ad ); |
| 119 | $this->render_shortcodes_allow( $ad ); |
| 120 | ?> |
| 121 | <?php |
| 122 | } |
| 123 | |
| 124 | /** |
| 125 | * Render php output field |
| 126 | * |
| 127 | * @param Ad_Plain $ad Ad instance. |
| 128 | * |
| 129 | * @return void |
| 130 | */ |
| 131 | private function render_php_allow( $ad ) { |
| 132 | ?> |
| 133 | <label class="label" for="advads-parameters-php"> |
| 134 | <?php esc_html_e( 'Allow PHP', 'advanced-ads' ); ?> |
| 135 | </label> |
| 136 | <div> |
| 137 | <input type="hidden" name="advanced_ad[allow_php]" value="off"> |
| 138 | <input id="advads-parameters-php" type="checkbox" name="advanced_ad[allow_php]" value="on"<?php checked( $ad->is_php_allowed() ); ?><?php disabled( ! Conditional::is_php_allowed() ); ?> /> |
| 139 | <span class="advads-help"> |
| 140 | <span class="advads-tooltip"> |
| 141 | <?php |
| 142 | echo wp_kses( |
| 143 | __( 'Execute PHP code (wrapped in <code><?php ?></code>)', 'advanced-ads' ), |
| 144 | [ |
| 145 | 'code' => [], |
| 146 | ] |
| 147 | ); |
| 148 | ?> |
| 149 | </span> |
| 150 | </span> |
| 151 | <?php if ( ! Conditional::is_php_allowed() ) : ?> |
| 152 | <p class="advads-notice-inline advads-error"> |
| 153 | <?php |
| 154 | printf( |
| 155 | /* translators: The name of the constant preventing PHP execution */ |
| 156 | esc_html__( 'Executing PHP code has been disallowed by %s', 'advanced-ads' ), |
| 157 | sprintf( '<code>%s</code>', defined( 'DISALLOW_FILE_EDIT' ) && DISALLOW_FILE_EDIT ? 'DISALLOW_FILE_EDIT' : 'ADVANCED_ADS_DISALLOW_PHP' ) |
| 158 | ); |
| 159 | ?> |
| 160 | </p> |
| 161 | <?php else : ?> |
| 162 | <p class="advads-notice-inline advads-error" id="advads-allow-php-warning" style="display:none;"> |
| 163 | <?php esc_html_e( 'Using PHP code can be dangerous. Please make sure you know what you are doing.', 'advanced-ads' ); ?> |
| 164 | </p> |
| 165 | <?php endif; ?> |
| 166 | <p class="advads-notice-inline advads-error" id="advads-parameters-php-warning" style="display:none;"> |
| 167 | <?php esc_html_e( 'No PHP tag detected in your code.', 'advanced-ads' ); ?> <?php esc_html_e( 'Uncheck this checkbox for improved performance.', 'advanced-ads' ); ?> |
| 168 | </p> |
| 169 | </div> |
| 170 | <hr/> |
| 171 | <?php |
| 172 | } |
| 173 | |
| 174 | /** |
| 175 | * Render allow shortcodes field. |
| 176 | * |
| 177 | * @param Ad_Plain $ad Ad instance. |
| 178 | * |
| 179 | * @return void |
| 180 | */ |
| 181 | private function render_shortcodes_allow( $ad ): void { |
| 182 | $allow_shortcodes = absint( $ad->is_shortcode_allowed() ); |
| 183 | ?> |
| 184 | <label class="label" |
| 185 | for="advads-parameters-shortcodes"><?php esc_html_e( 'Execute shortcodes', 'advanced-ads' ); ?></label> |
| 186 | <div> |
| 187 | <input type="hidden" name="advanced_ad[output][allow_shortcodes]" value="off"/> |
| 188 | <input id="advads-parameters-shortcodes" type="checkbox" name="advanced_ad[output][allow_shortcodes]" value="on" <?php checked( $allow_shortcodes ); ?>/> |
| 189 | <p class="advads-notice-inline advads-error" id="advads-parameters-shortcodes-warning" |
| 190 | style="display:none;"><?php esc_html_e( 'No shortcode detected in your code.', 'advanced-ads' ); ?> <?php esc_html_e( 'Uncheck this checkbox for improved performance.', 'advanced-ads' ); ?></p> |
| 191 | </div> |
| 192 | <hr/> |
| 193 | <?php |
| 194 | } |
| 195 | |
| 196 | /** |
| 197 | * Check if we're on an ad edit screen, if yes and the user does not have `unfiltered_html` permissions, |
| 198 | * show an admin notice. |
| 199 | * |
| 200 | * @param Ad_Plain $ad Ad instance. |
| 201 | * |
| 202 | * @return void |
| 203 | */ |
| 204 | private function error_unfiltered_html( $ad ): void { |
| 205 | $author_id = absint( get_post_field( 'post_author', $ad->get_id() ) ); |
| 206 | $user = wp_get_current_user(); |
| 207 | $current_user_id = $user->ID; |
| 208 | |
| 209 | if ( Conditional::can_author_unfiltered_html( $author_id ) ) { |
| 210 | return; |
| 211 | } |
| 212 | |
| 213 | ?> |
| 214 | <p class="advads-notice-inline advads-error"> |
| 215 | <?php |
| 216 | if ( $author_id === $current_user_id ) { |
| 217 | esc_html_e( 'You do not have sufficient permissions to include all HTML tags.', 'advanced-ads' ); |
| 218 | } else { |
| 219 | esc_html_e( 'The creator of the ad does not have sufficient permissions to include all HTML tags.', 'advanced-ads' ); |
| 220 | if ( |
| 221 | current_user_can( 'unfiltered_html' ) |
| 222 | && Conditional::has_user_role_on_site() |
| 223 | && ! empty( $user->caps['administrator'] ) // A superadmin won't be listed in the author dropdown if he's registered as something other than admin on a blog of the network. |
| 224 | ) { |
| 225 | printf( '<button type="button" onclick="(()=>Advanced_Ads_Admin.reassign_ad(%d))();" class="button button-primary">%s</button>', esc_attr( $current_user_id ), esc_html__( 'Assign ad to me', 'advanced-ads' ) ); |
| 226 | } |
| 227 | } |
| 228 | ?> |
| 229 | <a href="https://wpadvancedads.com/manual/ad-types/#Plain_Text_and_Code" class="advads-manual-link" target="_blank" rel="noopener"> |
| 230 | <?php esc_html_e( 'Manual', 'advanced-ads' ); ?> |
| 231 | </a> |
| 232 | </p> |
| 233 | <?php |
| 234 | } |
| 235 | } |
| 236 |