EDD_SL_Plugin_Updater.php
9 years ago
ad-ajax.php
9 years ago
ad-debug.php
9 years ago
ad-model.php
9 years ago
ad-select.php
9 years ago
ad.php
9 years ago
ad_ajax_callbacks.php
9 years ago
ad_group.php
9 years ago
ad_placements.php
9 years ago
ad_type_abstract.php
11 years ago
ad_type_content.php
9 years ago
ad_type_group.php
10 years ago
ad_type_image.php
9 years ago
ad_type_plain.php
9 years ago
checks.php
9 years ago
display-conditions.php
9 years ago
frontend_checks.php
9 years ago
plugin.php
9 years ago
upgrades.php
10 years ago
visitor-conditions.php
9 years ago
widget.php
9 years ago
ad_type_content.php
135 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 | * output for the ad parameters metabox |
| 44 | * |
| 45 | * this will be loaded using ajax when changing the ad type radio buttons |
| 46 | * echo the output right away here |
| 47 | * name parameters must be in the "advanced_ads" array |
| 48 | * |
| 49 | * @param obj $ad ad object |
| 50 | * @since 1.0.0 |
| 51 | */ |
| 52 | public function render_parameters($ad){ |
| 53 | // load tinymc content exitor |
| 54 | $content = (isset($ad->content)) ? $ad->content : ''; |
| 55 | |
| 56 | /** |
| 57 | * build the tinymc editor |
| 58 | * @link http://codex.wordpress.org/Function_Reference/wp_editor |
| 59 | * |
| 60 | * don’t build it when ajax is used; display message and buttons instead |
| 61 | */ |
| 62 | if ( defined( 'DOING_AJAX' ) ){ ?> |
| 63 | <textarea id="advads-ad-content-plain" style="display:none;" cols="40" rows="10" name="advanced_ad[content]"><?php echo $content; ?></textarea> |
| 64 | <?php |
| 65 | } else { |
| 66 | $args = array( |
| 67 | 'textarea_name' => 'advanced_ad[content]', |
| 68 | 'textarea_rows' => 10, |
| 69 | 'drag_drop_upload' => true |
| 70 | ); |
| 71 | wp_editor( $content, 'advanced-ad-parameters-content', $args ); |
| 72 | } ?><br class="clear"/><?php |
| 73 | include ADVADS_BASE_PATH . 'admin/views/ad-info-after-textarea.php'; |
| 74 | } |
| 75 | |
| 76 | /** |
| 77 | * sanitize content field on save |
| 78 | * |
| 79 | * @param str $content ad content |
| 80 | * @return str $content sanitized ad content |
| 81 | * @since 1.0.0 |
| 82 | */ |
| 83 | public function sanitize_content($content = ''){ |
| 84 | |
| 85 | // remove slashes from content |
| 86 | $content = wp_unslash( $content ); |
| 87 | |
| 88 | // use WordPress core content filter |
| 89 | return $content = apply_filters( 'content_save_pre', $content ); |
| 90 | } |
| 91 | |
| 92 | /** |
| 93 | * prepare the ads frontend output |
| 94 | * |
| 95 | * @param obj $ad ad object |
| 96 | * @return str $content ad content prepared for frontend output |
| 97 | * @since 1.0.0 |
| 98 | */ |
| 99 | public function prepare_output($ad){ |
| 100 | |
| 101 | // apply functions normally running through the_content filter |
| 102 | // the_content filter is not used here because it created an infinite loop (ads within ads for "before content" and other auto injections) |
| 103 | // maybe the danger is not here yet, but changing it to use the_content filter changes a lot |
| 104 | |
| 105 | $output = $ad->content; |
| 106 | |
| 107 | if ( isset( $GLOBALS['wp_embed'] ) ) { |
| 108 | // temporarily replace the global $post variable with the current ad (post) |
| 109 | $old_post = $GLOBALS['post']; |
| 110 | $GLOBALS['post'] = $ad->id; |
| 111 | |
| 112 | // get the [embed] shortcode to run before wpautop() |
| 113 | $output = $GLOBALS['wp_embed']->run_shortcode( $output ); |
| 114 | // attempts to embed all URLs in a post |
| 115 | $output = $GLOBALS['wp_embed']->autoembed( $output ); |
| 116 | |
| 117 | $GLOBALS['post'] = $old_post; |
| 118 | } |
| 119 | |
| 120 | $output = wptexturize( $output ); |
| 121 | $output = convert_smilies( $output ); |
| 122 | $output = convert_chars( $output ); |
| 123 | $output = wpautop( $output ); |
| 124 | $output = shortcode_unautop( $output ); |
| 125 | $output = do_shortcode( $output ); |
| 126 | $output = prepend_attachment( $output ); |
| 127 | // make included images responsive, since WordPress 4.4 |
| 128 | if( ! defined( 'ADVADS_DISABLE_RESPONSIVE_IMAGES' ) && function_exists( 'wp_make_content_images_responsive' ) ){ |
| 129 | $output = wp_make_content_images_responsive( $output ); |
| 130 | } |
| 131 | |
| 132 | return $output; |
| 133 | } |
| 134 | |
| 135 | } |