EDD_SL_Plugin_Updater.php
7 years ago
ad-ajax.php
8 years ago
ad-debug.php
8 years ago
ad-model.php
8 years ago
ad-select.php
9 years ago
ad.php
7 years ago
ad_ajax_callbacks.php
7 years ago
ad_group.php
7 years ago
ad_placements.php
7 years ago
ad_type_abstract.php
8 years ago
ad_type_content.php
8 years ago
ad_type_dummy.php
8 years ago
ad_type_group.php
8 years ago
ad_type_image.php
7 years ago
ad_type_plain.php
8 years ago
checks.php
7 years ago
compatibility.php
7 years ago
display-conditions.php
7 years ago
filesystem.php
8 years ago
frontend_checks.php
7 years ago
plugin.php
7 years ago
upgrades.php
9 years ago
utils.php
7 years ago
visitor-conditions.php
7 years ago
widget.php
7 years ago
ad_type_content.php
139 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Advanced Ads Content 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 2014 Thomas Maier, webgilde 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 | } ?><br class="clear"/> <input type="hidden" name="advanced_ad[output][allow_shortcodes]" value="1" /><?php |
| 77 | include ADVADS_BASE_PATH . 'admin/views/ad-info-after-textarea.php'; |
| 78 | } |
| 79 | |
| 80 | /** |
| 81 | * sanitize content field on save |
| 82 | * |
| 83 | * @param str $content ad content |
| 84 | * @return str $content sanitized ad content |
| 85 | * @since 1.0.0 |
| 86 | */ |
| 87 | public function sanitize_content($content = ''){ |
| 88 | // use WordPress core content filter |
| 89 | $content = apply_filters( 'content_save_pre', $content ); |
| 90 | |
| 91 | // remove slashes from content |
| 92 | $content = wp_unslash( $content ); |
| 93 | return $content; |
| 94 | } |
| 95 | |
| 96 | /** |
| 97 | * prepare the ads frontend output |
| 98 | * |
| 99 | * @param obj $ad ad object |
| 100 | * @return str $content ad content prepared for frontend output |
| 101 | * @since 1.0.0 |
| 102 | */ |
| 103 | public function prepare_output($ad){ |
| 104 | |
| 105 | // apply functions normally running through the_content filter |
| 106 | // the_content filter is not used here because it created an infinite loop (ads within ads for "before content" and other auto injections) |
| 107 | // maybe the danger is not here yet, but changing it to use the_content filter changes a lot |
| 108 | |
| 109 | $output = $ad->content; |
| 110 | |
| 111 | if ( isset( $GLOBALS['wp_embed'] ) ) { |
| 112 | // temporarily replace the global $post variable with the current ad (post) |
| 113 | $old_post = $GLOBALS['post']; |
| 114 | $GLOBALS['post'] = $ad->id; |
| 115 | |
| 116 | // get the [embed] shortcode to run before wpautop() |
| 117 | $output = $GLOBALS['wp_embed']->run_shortcode( $output ); |
| 118 | // attempts to embed all URLs in a post |
| 119 | $output = $GLOBALS['wp_embed']->autoembed( $output ); |
| 120 | |
| 121 | $GLOBALS['post'] = $old_post; |
| 122 | } |
| 123 | |
| 124 | $output = wptexturize( $output ); |
| 125 | $output = convert_smilies( $output ); |
| 126 | $output = convert_chars( $output ); |
| 127 | $output = wpautop( $output ); |
| 128 | $output = shortcode_unautop( $output ); |
| 129 | $output = $this->do_shortcode( $output, $ad ); |
| 130 | $output = prepend_attachment( $output ); |
| 131 | // make included images responsive, since WordPress 4.4 |
| 132 | if( ! defined( 'ADVADS_DISABLE_RESPONSIVE_IMAGES' ) && function_exists( 'wp_make_content_images_responsive' ) ){ |
| 133 | $output = wp_make_content_images_responsive( $output ); |
| 134 | } |
| 135 | |
| 136 | return $output; |
| 137 | } |
| 138 | } |
| 139 |