????JFIF??x?x????'
Server IP : 104.21.96.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/cwd/wp-content/plugins/jetpack/modules/wordads/php/ |
Upload File : |
<?php /** * Widget for adding ads to a sidebar. * * @package automattic/jetpack */ /** * Widget for inserting an ad into your sidebar * * @since 4.5.0 */ class WordAds_Sidebar_Widget extends WP_Widget { /** * Allowed tags. * * @var string[] */ private static $allowed_tags = array( 'mrec', 'wideskyscraper', 'leaderboard' ); /** * Mapping array of widget sizes with the WordAds_Smart formats. * * @var string[] */ private static $sizes_x_smart_format = array( '300x250' => 'sidebar_widget_mediumrectangle', '728x90' => 'sidebar_widget_leaderboard', '160x600' => 'sidebar_widget_wideskyscraper', ); /** * Number of widgets. * * @var int */ private static $num_widgets = 0; /** * WordAds_Sidebar_Widget constructor. */ public function __construct() { parent::__construct( 'wordads_sidebar_widget', /** This filter is documented in modules/widgets/facebook-likebox.php */ apply_filters( 'jetpack_widget_name', 'Ads' ), array( 'description' => __( 'Insert an ad unit wherever you can place a widget.', 'jetpack' ), 'customize_selective_refresh' => true, ) ); add_filter( 'widget_types_to_hide_from_legacy_widget_block', array( $this, 'hide_widget_in_block_editor' ) ); } /** * Remove the Ad widget from the Legacy Widget block * * @param array $widget_types List of widgets that are currently removed from the Legacy Widget block. * * @return array $widget_types New list of widgets that will be removed. */ public function hide_widget_in_block_editor( $widget_types ) { $widget_types[] = 'wordads_sidebar_widget'; return $widget_types; } /** * The Widget outputter. * * @param array $args Widget args. * @param array $instance The Widget instance. * * @return bool|void */ public function widget( $args, $instance ) { global $wordads; if ( $wordads->should_bail() ) { return false; } if ( ! isset( $instance['unit'] ) ) { $instance['unit'] = 'mrec'; } ++self::$num_widgets; $width = WordAds::$ad_tag_ids[ $instance['unit'] ]['width']; $height = WordAds::$ad_tag_ids[ $instance['unit'] ]['height']; $unit_id = 1 === self::$num_widgets ? 3 : self::$num_widgets + 3; // 2nd belowpost is '4' $section_id = 0 === $wordads->params->blog_id ? WORDADS_API_TEST_ID : $wordads->params->blog_id . $unit_id; $smart_format = self::$sizes_x_smart_format[ "{$width}x{$height}" ]; // phpcs:disable WordPress.Security.NonceVerification.Recommended $is_watl_enabled = isset( $_GET['wordads-logging'] ) && isset( $_GET[ $smart_format ] ) && 'true' === $_GET[ $smart_format ]; // Get the widget snippet. $widget_snippet = $this->get_widget_snippet( $instance, $section_id, $height, $width ); // Render the IPW or house ad if WATL is disabled. if ( ! $is_watl_enabled ) { // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped echo $widget_snippet; return; } // Remove linebreaks and sanitize. $tag = esc_js( str_replace( array( "\n", "\t", "\r" ), '', $widget_snippet ) ); // Add the fallback to be processed by WATL. $fallback_snippet = <<<HTML <script type="text/javascript"> var sas_fallback = sas_fallback || []; sas_fallback.push( { tag: "$tag", type: '$smart_format' } ); </script> HTML; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped echo $fallback_snippet . $wordads::get_watl_ad_html_tag( $smart_format ); } /** * The widget snippet. * * @param array $instance The widget instance. * @param string $section_id The section id. * @param int $height The ad height. * @param int $width The ad width. * * @return string */ private function get_widget_snippet( $instance, $section_id, $height, $width ) { global $wordads; if ( $wordads->option( 'wordads_house', true ) ) { $unit = 'mrec'; if ( 'leaderboard' === $instance['unit'] && ! $this->params->mobile_device ) { $unit = 'leaderboard'; } elseif ( 'wideskyscraper' === $instance['unit'] ) { $unit = 'widesky'; } $snippet = $wordads->get_house_ad( $unit ); } else { return $wordads->get_ad_snippet( $section_id, $height, $width, 'widget' ); } $about = __( 'Advertisements', 'jetpack' ); $unit = esc_attr( $instance['unit'] ); return <<<HTML <div class="wpcnt"> <div class="wpa"> <span class="wpa-about">$about</span> <div class="u $unit"> $snippet </div> </div> </div> HTML; } /** * The widget settings form. * * @param array $instance Widget instance. * * @return string|void */ public function form( $instance ) { // ad unit type. if ( isset( $instance['unit'] ) ) { $unit = $instance['unit']; } else { $unit = 'mrec'; } ?> <p> <label for="<?php echo esc_attr( $this->get_field_id( 'unit' ) ); ?>"><?php esc_html_e( 'Tag Dimensions:', 'jetpack' ); ?></label> <select class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'unit' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'unit' ) ); ?>"> <?php foreach ( WordAds::$ad_tag_ids as $ad_unit => $properties ) { if ( ! in_array( $ad_unit, self::$allowed_tags, true ) ) { continue; } $splits = explode( '_', $properties['tag'] ); $unit_pretty = "{$splits[0]} {$splits[1]}"; $selected = selected( $ad_unit, $unit, false ); echo "<option value='", esc_attr( $ad_unit ), "' ", esc_attr( $selected ), '>', esc_html( $unit_pretty ), '</option>'; } ?> </select> </p> <?php } /** * The Widget updater. * * @param array $new_instance The revised instance. * @param array $old_instance Original instance. * * @return array */ public function update( $new_instance, $old_instance ) { $instance = $old_instance; if ( in_array( $new_instance['unit'], self::$allowed_tags, true ) ) { $instance['unit'] = $new_instance['unit']; } else { $instance['unit'] = 'mrec'; } return $instance; } }