EDD_SL_Plugin_Updater.php
6 years ago
ad-ajax.php
6 years ago
ad-debug.php
8 years ago
ad-health-notices.php
6 years ago
ad-model.php
8 years ago
ad-select.php
9 years ago
ad.php
6 years ago
ad_ajax_callbacks.php
6 years ago
ad_group.php
6 years ago
ad_placements.php
6 years ago
ad_type_abstract.php
8 years ago
ad_type_content.php
6 years ago
ad_type_dummy.php
6 years ago
ad_type_group.php
8 years ago
ad_type_image.php
6 years ago
ad_type_plain.php
6 years ago
checks.php
6 years ago
compatibility.php
6 years ago
display-conditions.php
6 years ago
filesystem.php
8 years ago
frontend_checks.php
6 years ago
plugin.php
6 years ago
upgrades.php
6 years ago
utils.php
6 years ago
visitor-conditions.php
6 years ago
widget.php
6 years ago
ad_type_plain.php
158 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Advanced Ads Plain Ad Type |
| 5 | * |
| 6 | * @package Advanced_Ads |
| 7 | * @author Thomas Maier <thomas.maier@webgilde.com> |
| 8 | * @license GPL-2.0+ |
| 9 | * @link http://webgilde.com |
| 10 | * @copyright 2014 Thomas Maier, webgilde GmbH |
| 11 | * |
| 12 | * Class containing information about the plain text/code ad type |
| 13 | * |
| 14 | * see ad-type-content.php for a better sample on ad type |
| 15 | * |
| 16 | */ |
| 17 | class Advanced_Ads_Ad_Type_Plain extends Advanced_Ads_Ad_Type_Abstract { |
| 18 | |
| 19 | /** |
| 20 | * ID - internal type of the ad type |
| 21 | * |
| 22 | * @since 1.0.0 |
| 23 | */ |
| 24 | public $ID = 'plain'; |
| 25 | |
| 26 | /** |
| 27 | * Set basic attributes |
| 28 | * |
| 29 | * @since 1.0.0 |
| 30 | */ |
| 31 | public function __construct() { |
| 32 | $this->title = __( 'Plain Text and Code', 'advanced-ads' ); |
| 33 | $this->description = __( 'Any ad network, Amazon, customized AdSense codes, shortcodes, and code like JavaScript, HTML or PHP.', 'advanced-ads' ); |
| 34 | $this->parameters = array( |
| 35 | 'content' => '', |
| 36 | ); |
| 37 | } |
| 38 | |
| 39 | /** |
| 40 | * Output for the ad parameters metabox |
| 41 | * |
| 42 | * This will be loaded using ajax when changing the ad type radio buttons |
| 43 | * echo the output right away here |
| 44 | * name parameters must be in the "advanced_ads" array |
| 45 | * |
| 46 | * @param object $ad Advanced_Ads_Ad. |
| 47 | * |
| 48 | * @since 1.0.0 |
| 49 | */ |
| 50 | public function render_parameters( $ad ) { |
| 51 | // load content. |
| 52 | $content = ( isset( $ad->content ) ) ? $ad->content : ''; |
| 53 | |
| 54 | ?><p class="description"><?php _e( 'Insert plain text or code into this field.', 'advanced-ads' ); ?></p> |
| 55 | <textarea id="advads-ad-content-plain" cols="40" rows="10" name="advanced_ad[content]" |
| 56 | onkeyup="Advanced_Ads_Admin.check_ad_source();"><?php echo esc_textarea( $content ); ?></textarea> |
| 57 | <?php include ADVADS_BASE_PATH . 'admin/views/ad-info-after-textarea.php'; ?> |
| 58 | <input type="hidden" name="advanced_ad[output][allow_php]" value="0"/> |
| 59 | |
| 60 | <?php |
| 61 | |
| 62 | $this->render_php_allow( $ad ); |
| 63 | $this->render_shortcodes_allow( $ad ); |
| 64 | ?> |
| 65 | <script>jQuery( function () { Advanced_Ads_Admin.check_ad_source() } )</script><?php |
| 66 | } |
| 67 | |
| 68 | /** |
| 69 | * Render php output field |
| 70 | * |
| 71 | * @param object $ad Advanced_Ads_Ad object. |
| 72 | */ |
| 73 | public function render_php_allow( $ad ) { |
| 74 | if ( defined( 'ADVANCED_ADS_DISALLOW_PHP' ) ) { |
| 75 | return; |
| 76 | } |
| 77 | |
| 78 | $content = ( isset( $ad->content ) ) ? $ad->content : ''; |
| 79 | |
| 80 | // check if php is allowed. |
| 81 | if ( isset( $ad->output['allow_php'] ) ) { |
| 82 | $allow_php = absint( $ad->output['allow_php'] ); |
| 83 | } else { |
| 84 | /** |
| 85 | * For compatibility for ads with PHP added prior to 1.3.18 |
| 86 | * check if there is php code in the content |
| 87 | */ |
| 88 | if ( preg_match( '/\<\?php/', $content ) ) { |
| 89 | $allow_php = 1; |
| 90 | } else { |
| 91 | $allow_php = 0; |
| 92 | } |
| 93 | } |
| 94 | ?> |
| 95 | <label class="label" for="advads-parameters-php"><?php _e( 'Allow PHP', 'advanced-ads' ); ?></label> |
| 96 | <div> |
| 97 | <input id="advads-parameters-php" type="checkbox" name="advanced_ad[output][allow_php]" |
| 98 | value="1" <?php checked( 1, $allow_php ); ?> |
| 99 | onChange="Advanced_Ads_Admin.check_ad_source();"/><?php _e( 'Execute PHP code (wrapped in <code><?php ?></code>)', 'advanced-ads' ); |
| 100 | ?> |
| 101 | <div class="advads-error-message" id="advads-parameters-php-warning" |
| 102 | style="display:none;"><?php _e( 'No PHP tag detected in your code.', 'advanced-ads' ); ?><?php _e( 'Uncheck this checkbox for improved performance.', 'advanced-ads' ); ?></div> |
| 103 | </div> |
| 104 | <hr/><?php |
| 105 | |
| 106 | } |
| 107 | |
| 108 | /** |
| 109 | * Render allow shortcodes field. |
| 110 | * |
| 111 | * @param object $ad Advanced_Ads_Ad object. |
| 112 | */ |
| 113 | public function render_shortcodes_allow( $ad ) { |
| 114 | $allow_shortcodes = ! empty( $ad->output['allow_shortcodes'] ); |
| 115 | ?> |
| 116 | <label class="label" |
| 117 | for="advads-parameters-shortcodes"><?php _e( 'Allow shortcodes', 'advanced-ads' ); ?></label> |
| 118 | <div> |
| 119 | <input id="advads-parameters-shortcodes" type="checkbox" name="advanced_ad[output][allow_shortcodes]" |
| 120 | value="1" <?php |
| 121 | checked( 1, $allow_shortcodes ); ?> |
| 122 | onChange="Advanced_Ads_Admin.check_ad_source();"/><?php _e( 'Execute shortcodes', 'advanced-ads' ); |
| 123 | ?> |
| 124 | <div class="advads-error-message" id="advads-parameters-shortcodes-warning" |
| 125 | style="display:none;"><?php _e( 'No shortcode detected in your code.', 'advanced-ads' ); ?><?php _e( 'Uncheck this checkbox for improved performance.', 'advanced-ads' ); ?></div> |
| 126 | </div> |
| 127 | <hr/><?php |
| 128 | } |
| 129 | |
| 130 | /** |
| 131 | * Prepare the ads frontend output |
| 132 | * |
| 133 | * @param object $ad ad object. |
| 134 | * |
| 135 | * @return string $content ad content prepared for frontend output. |
| 136 | * @since 1.0.0 |
| 137 | */ |
| 138 | public function prepare_output( $ad ) { |
| 139 | |
| 140 | // evaluate the code as PHP if setting was never saved or is allowed. |
| 141 | if ( ! defined( 'ADVANCED_ADS_DISALLOW_PHP' ) && ( ! isset( $ad->output['allow_php'] ) || $ad->output['allow_php'] ) ) { |
| 142 | ob_start(); |
| 143 | // this code only runs if the "Allow PHP" option for plain text ads was enabled. |
| 144 | eval( '?>' . $ad->content ); |
| 145 | $content = ob_get_clean(); |
| 146 | } else { |
| 147 | $content = $ad->content; |
| 148 | } |
| 149 | |
| 150 | if ( ! empty( $ad->output['allow_shortcodes'] ) ) { |
| 151 | $content = $this->do_shortcode( $content, $ad ); |
| 152 | } |
| 153 | |
| 154 | return $content; |
| 155 | } |
| 156 | |
| 157 | } |
| 158 |