ad-ajax.php
11 years ago
ad-model.php
11 years ago
ad-select.php
11 years ago
ad.php
11 years ago
ad_ajax_callbacks.php
11 years ago
ad_group.php
11 years ago
ad_placements.php
11 years ago
ad_type_abstract.php
11 years ago
ad_type_content.php
11 years ago
ad_type_plain.php
11 years ago
plugin.php
11 years ago
widget.php
11 years ago
ad_type_content.php
122 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 Advads_Ad_Type_Content extends Advads_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', ADVADS_SLUG ); |
| 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.', ADVADS_SLUG ); |
| 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 | ?><p><?php _e( 'Please <strong>save the ad</strong> before changing it to the content type.', ADVADS_SLUG ); ?></p><?php |
| 64 | $status = get_post_status( $ad->id ); |
| 65 | if ( 'publish' != $status && 'future' != $status && 'pending' != $status ) { ?> |
| 66 | <input <?php if ( 'private' == $status ) { ?>style="display:none"<?php } ?> type="submit" name="save" id="save-post" value="<?php esc_attr_e( 'Save Draft' ); ?>" class="button" /> |
| 67 | <?php } else { |
| 68 | ?><input name="original_publish" type="hidden" id="original_publish" value="<?php esc_attr_e( 'Update' ) ?>" /> |
| 69 | <input name="save" type="submit" class="button button-primary button-large" id="publish" accesskey="p" value="<?php esc_attr_e( 'Update' ) ?>" /><?php |
| 70 | } |
| 71 | if ( ! empty($ad->content) ) : ?><textarea id="advads-ad-content-plain" style="display:none;" cols="1" rows="1" name="advanced_ad[content]"><?php |
| 72 | echo $ad->content; ?></textarea><br class="clear"/><?php endif; |
| 73 | } else { |
| 74 | $args = array( |
| 75 | 'textarea_name' => 'advanced_ad[content]', |
| 76 | 'textarea_rows' => 10, |
| 77 | 'drag_drop_upload' => true |
| 78 | ); |
| 79 | wp_editor( $content, 'advanced-ad-parameters-content', $args ); |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | /** |
| 84 | * sanitize content field on save |
| 85 | * |
| 86 | * @param str $content ad content |
| 87 | * @return str $content sanitized ad content |
| 88 | * @since 1.0.0 |
| 89 | */ |
| 90 | public function sanitize_content($content = ''){ |
| 91 | |
| 92 | // remove slashes from content |
| 93 | $content = wp_unslash( $content ); |
| 94 | |
| 95 | // use WordPress core content filter |
| 96 | return $content = apply_filters( 'content_save_pre', $content ); |
| 97 | } |
| 98 | |
| 99 | /** |
| 100 | * prepare the ads frontend output |
| 101 | * |
| 102 | * @param obj $ad ad object |
| 103 | * @return str $content ad content prepared for frontend output |
| 104 | * @since 1.0.0 |
| 105 | */ |
| 106 | public function prepare_output($ad){ |
| 107 | |
| 108 | // apply functions normally running through the_content filter |
| 109 | // the_content filter not used here because it created an infinite loop (ads within ads) |
| 110 | |
| 111 | $output = wptexturize( $ad->content ); |
| 112 | $output = convert_smilies( $output ); |
| 113 | $output = convert_chars( $output ); |
| 114 | $output = wpautop( $output ); |
| 115 | $output = shortcode_unautop( $output ); |
| 116 | $output = do_shortcode( $output ); |
| 117 | $output = prepend_attachment( $output ); |
| 118 | |
| 119 | return $output; |
| 120 | } |
| 121 | |
| 122 | } |