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
12 years ago
ad_type_content.php
12 years ago
ad_type_plain.php
12 years ago
widget.php
11 years ago
ad_type_content.php
83 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', Advanced_Ads::TD); |
| 36 | $this->description = __('The full content editor from WordPress with all features like image upload or styling, but also simple text/html mode for scripts and code.', Advanced_Ads::TD); |
| 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 | * build the tinymc editor |
| 57 | * @link http://codex.wordpress.org/Function_Reference/wp_editor |
| 58 | */ |
| 59 | $args = array( |
| 60 | 'textarea_name' => 'advanced_ad[content]', |
| 61 | 'textarea_rows' => 10, |
| 62 | 'drag_drop_upload' => true |
| 63 | ); |
| 64 | wp_editor($content, 'advanced-ad-parameters-content', $args); |
| 65 | } |
| 66 | |
| 67 | /** |
| 68 | * sanitize content field on save |
| 69 | * |
| 70 | * @param str $content ad content |
| 71 | * @return str $content sanitized ad content |
| 72 | * @since 1.0.0 |
| 73 | */ |
| 74 | public function sanitize_content($content = ''){ |
| 75 | |
| 76 | // remove slashes from content |
| 77 | $content = wp_unslash($content); |
| 78 | |
| 79 | // use WordPress core content filter |
| 80 | return $content = apply_filters('content_save_pre', $content); |
| 81 | } |
| 82 | |
| 83 | } |