EDD_SL_Plugin_Updater.php
4 years ago
ad-ajax.php
5 years ago
ad-debug.php
6 years ago
ad-expiration.php
4 years ago
ad-health-notices.php
5 years ago
ad-model.php
5 years ago
ad-select.php
9 years ago
ad.php
4 years ago
ad_ajax_callbacks.php
5 years ago
ad_group.php
4 years ago
ad_placements.php
4 years ago
ad_type_abstract.php
5 years ago
ad_type_content.php
5 years ago
ad_type_dummy.php
5 years ago
ad_type_group.php
5 years ago
ad_type_image.php
5 years ago
ad_type_plain.php
4 years ago
checks.php
4 years ago
compatibility.php
4 years ago
display-conditions.php
4 years ago
filesystem.php
8 years ago
frontend-notices.php
6 years ago
frontend_checks.php
4 years ago
in-content-injector.php
4 years ago
inline-css.php
4 years ago
plugin.php
4 years ago
upgrades.php
6 years ago
utils.php
4 years ago
visitor-conditions.php
4 years ago
widget.php
4 years ago
ad_type_content.php
153 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Advanced Ads Content Ad Type |
| 4 | * |
| 5 | * @package Advanced_Ads |
| 6 | * @author Thomas Maier <support@wpadvancedads.com> |
| 7 | * @license GPL-2.0+ |
| 8 | * @link https://wpadvancedads.com |
| 9 | * @copyright 2014 Thomas Maier, Advanced Ads GmbH |
| 10 | * |
| 11 | * Class containing information about the content ad type |
| 12 | * this should also work as an example for other ad types |
| 13 | * |
| 14 | * see also includes/ad-type-abstract.php for basic object |
| 15 | * |
| 16 | */ |
| 17 | class Advanced_Ads_Ad_Type_Content extends Advanced_Ads_Ad_Type_Abstract{ |
| 18 | |
| 19 | /** |
| 20 | * ID - internal type of the ad type |
| 21 | * |
| 22 | * must be static so set your own ad type ID here |
| 23 | * use slug like format, only lower case, underscores and hyphens |
| 24 | * |
| 25 | * @since 1.0.0 |
| 26 | */ |
| 27 | public $ID = 'content'; |
| 28 | |
| 29 | /** |
| 30 | * Set basic attributes |
| 31 | * |
| 32 | * @since 1.0.0 |
| 33 | */ |
| 34 | public function __construct() { |
| 35 | $this->title = __( 'Rich Content', 'advanced-ads' ); |
| 36 | $this->description = __( 'The full content editor from WordPress with all features like shortcodes, image upload or styling, but also simple text/html mode for scripts and code.', 'advanced-ads' ); |
| 37 | $this->parameters = array( |
| 38 | 'content' => '' |
| 39 | ); |
| 40 | } |
| 41 | |
| 42 | |
| 43 | /** |
| 44 | * Output for the ad parameters metabox |
| 45 | * |
| 46 | * this will be loaded using ajax when changing the ad type radio buttons |
| 47 | * echo the output right away here |
| 48 | * name parameters must be in the "advanced_ads" array |
| 49 | * |
| 50 | * @param obj $ad ad object |
| 51 | * @since 1.0.0 |
| 52 | */ |
| 53 | public function render_parameters($ad){ |
| 54 | // load tinymc content exitor |
| 55 | $content = (isset($ad->content)) ? $ad->content : ''; |
| 56 | |
| 57 | /** |
| 58 | * Build the tinymc editor |
| 59 | * @link http://codex.wordpress.org/Function_Reference/wp_editor |
| 60 | * |
| 61 | * don’t build it when ajax is used; display message and buttons instead |
| 62 | */ |
| 63 | if ( defined( 'DOING_AJAX' ) ){ ?> |
| 64 | <textarea id="advads-ad-content-plain" style="display:none;" cols="40" rows="10" name="advanced_ad[content]"><?php echo esc_textarea( $content ); ?></textarea> |
| 65 | <?php |
| 66 | } else { |
| 67 | if ( ! user_can_richedit() ) { |
| 68 | $content = esc_textarea( $content ); |
| 69 | } |
| 70 | $args = array( |
| 71 | 'textarea_name' => 'advanced_ad[content]', |
| 72 | 'textarea_rows' => 10, |
| 73 | 'drag_drop_upload' => true |
| 74 | ); |
| 75 | wp_editor( $content, 'advanced-ad-parameters-content', $args ); |
| 76 | } |
| 77 | ?> |
| 78 | <br class="clear"/> |
| 79 | |
| 80 | <input type="hidden" name="advanced_ad[output][allow_shortcodes]" value="1" /><?php |
| 81 | include ADVADS_BASE_PATH . 'admin/views/ad-info-after-textarea.php'; |
| 82 | } |
| 83 | |
| 84 | /** |
| 85 | * Sanitize content field on save |
| 86 | * |
| 87 | * @param str $content ad content |
| 88 | * @return str $content sanitized ad content |
| 89 | * @since 1.0.0 |
| 90 | */ |
| 91 | public function sanitize_content($content = ''){ |
| 92 | // use WordPress core content filter |
| 93 | $content = apply_filters( 'content_save_pre', $content ); |
| 94 | |
| 95 | // remove slashes from content |
| 96 | $content = wp_unslash( $content ); |
| 97 | return $content; |
| 98 | } |
| 99 | |
| 100 | /** |
| 101 | * Prepare the ads frontend output. |
| 102 | * |
| 103 | * @param Advanced_Ads_Ad $ad The ad object. |
| 104 | * |
| 105 | * @return string $content ad content prepared for frontend output. |
| 106 | * @since 1.0.0 |
| 107 | */ |
| 108 | public function prepare_output( $ad ) { |
| 109 | |
| 110 | // apply functions normally running through the_content filter |
| 111 | // the_content filter is not used here because it created an infinite loop (ads within ads for "before content" and other auto injections) |
| 112 | // maybe the danger is not here yet, but changing it to use the_content filter changes a lot |
| 113 | |
| 114 | $output = $ad->content; |
| 115 | |
| 116 | if ( isset( $GLOBALS['wp_embed'] ) ) { |
| 117 | // temporarily replace the global $post variable with the current ad (post) |
| 118 | $old_post = $GLOBALS['post']; |
| 119 | $GLOBALS['post'] = $ad->id; |
| 120 | |
| 121 | // get the [embed] shortcode to run before wpautop() |
| 122 | $output = $GLOBALS['wp_embed']->run_shortcode( $output ); |
| 123 | // attempts to embed all URLs in a post |
| 124 | $output = $GLOBALS['wp_embed']->autoembed( $output ); |
| 125 | |
| 126 | $GLOBALS['post'] = $old_post; |
| 127 | } |
| 128 | |
| 129 | $output = wptexturize( $output ); |
| 130 | $output = convert_smilies( $output ); |
| 131 | $output = convert_chars( $output ); |
| 132 | $output = wpautop( $output ); |
| 133 | $output = shortcode_unautop( $output ); |
| 134 | $output = $this->do_shortcode( $output, $ad ); |
| 135 | |
| 136 | if ( defined( 'ADVADS_DISABLE_RESPONSIVE_IMAGES' ) && ADVADS_DISABLE_RESPONSIVE_IMAGES ) { |
| 137 | return $output; |
| 138 | } |
| 139 | |
| 140 | // Make included images responsive, since WordPress 4.4, before WordPress 5.5. |
| 141 | if ( function_exists( 'wp_make_content_images_responsive' ) && ! function_exists( 'wp_filter_content_tags' ) ) { |
| 142 | return wp_make_content_images_responsive( $output ); |
| 143 | } |
| 144 | |
| 145 | // Function wp_make_content_images_responsive has been deprecated with WordPress 5.5. |
| 146 | if ( function_exists( 'wp_filter_content_tags' ) ) { |
| 147 | return wp_filter_content_tags( $output ); |
| 148 | } |
| 149 | |
| 150 | return $output; |
| 151 | } |
| 152 | } |
| 153 |