authors
8 years ago
contact-info
5 years ago
eu-cookie-law
4 years ago
facebook-likebox
11 years ago
flickr
4 years ago
gallery
4 years ago
goodreads
5 years ago
google-translate
4 years ago
image-widget
8 years ago
instagram
6 years ago
migrate-to-core
3 years ago
milestone
3 years ago
my-community
8 years ago
simple-payments
4 years ago
social-icons
4 years ago
social-media-icons
5 years ago
top-posts
8 years ago
wordpress-post-widget
3 years ago
authors.php
3 years ago
blog-stats.php
3 years ago
class-jetpack-eu-cookie-law-widget.php
3 years ago
class-jetpack-instagram-widget.php
3 years ago
contact-info.php
3 years ago
customizer-controls.css
9 years ago
customizer-utils.js
6 years ago
facebook-likebox.php
3 years ago
flickr.php
3 years ago
gallery.php
3 years ago
goodreads.php
3 years ago
google-translate.php
3 years ago
gravatar-profile.css
10 years ago
gravatar-profile.php
3 years ago
image-widget.php
3 years ago
internet-defense-league.php
3 years ago
mailchimp.php
3 years ago
milestone.php
5 years ago
my-community.php
3 years ago
rsslinks-widget.php
3 years ago
simple-payments.php
3 years ago
social-icons.php
3 years ago
social-media-icons.php
3 years ago
top-posts.php
3 years ago
twitter-timeline-admin.js
6 years ago
twitter-timeline.php
3 years ago
upcoming-events.php
3 years ago
wordpress-post-widget.php
4 years ago
internet-defense-league.php
267 lines
| 1 | <?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName |
| 2 | |
| 3 | // phpcs:disable Universal.Files.SeparateFunctionsFromOO.Mixed -- TODO: Move classes to appropriately-named class files. |
| 4 | |
| 5 | use Automattic\Jetpack\Image_CDN\Image_CDN_Core; |
| 6 | |
| 7 | /** |
| 8 | * Jetpack_Internet_Defense_League_Widget main class. |
| 9 | */ |
| 10 | class Jetpack_Internet_Defense_League_Widget extends WP_Widget { |
| 11 | /** |
| 12 | * Default widget settings. |
| 13 | * |
| 14 | * @var array |
| 15 | */ |
| 16 | public $defaults = array(); |
| 17 | |
| 18 | /** |
| 19 | * Selected display variant. |
| 20 | * |
| 21 | * @var string |
| 22 | */ |
| 23 | public $variant; |
| 24 | /** |
| 25 | * Display variants. |
| 26 | * |
| 27 | * @var array |
| 28 | */ |
| 29 | public $variants = array(); |
| 30 | |
| 31 | /** |
| 32 | * Selected campaign. |
| 33 | * |
| 34 | * @var string |
| 35 | */ |
| 36 | public $campaign; |
| 37 | /** |
| 38 | * Campaign options. |
| 39 | * |
| 40 | * @var array |
| 41 | */ |
| 42 | public $campaigns = array(); |
| 43 | /** |
| 44 | * False when enabling campaigns other than 'none' or empty. |
| 45 | * |
| 46 | * @var bool |
| 47 | */ |
| 48 | public $no_current = true; |
| 49 | |
| 50 | /** |
| 51 | * Selected badge to display. |
| 52 | * |
| 53 | * @var string |
| 54 | */ |
| 55 | public $badge; |
| 56 | /** |
| 57 | * Badge display options. |
| 58 | * |
| 59 | * @var array |
| 60 | */ |
| 61 | public $badges = array(); |
| 62 | |
| 63 | /** |
| 64 | * Jetpack_Internet_Defense_League_Widget constructor. |
| 65 | */ |
| 66 | public function __construct() { |
| 67 | parent::__construct( |
| 68 | 'internet_defense_league_widget', |
| 69 | /** This filter is documented in modules/widgets/facebook-likebox.php */ |
| 70 | apply_filters( 'jetpack_widget_name', esc_html__( 'Internet Defense League', 'jetpack' ) ), |
| 71 | array( |
| 72 | 'description' => esc_html__( 'Show your support for the Internet Defense League.', 'jetpack' ), |
| 73 | 'customize_selective_refresh' => true, |
| 74 | ) |
| 75 | ); |
| 76 | |
| 77 | // When enabling campaigns other than 'none' or empty, change $no_current to false above. |
| 78 | $this->campaigns = array( |
| 79 | '' => esc_html__( 'All current and future campaigns', 'jetpack' ), |
| 80 | 'none' => esc_html__( 'None, just display the badge please', 'jetpack' ), |
| 81 | ); |
| 82 | |
| 83 | $this->variants = array( |
| 84 | 'banner' => esc_html__( 'Banner at the top of my site', 'jetpack' ), |
| 85 | 'modal' => esc_html__( 'Modal (Overlay Box)', 'jetpack' ), |
| 86 | ); |
| 87 | |
| 88 | $this->badges = array( |
| 89 | 'shield_badge' => esc_html__( 'Shield Badge', 'jetpack' ), |
| 90 | 'super_badge' => esc_html__( 'Super Badge', 'jetpack' ), |
| 91 | 'side_bar_badge' => esc_html__( 'Red Cat Badge', 'jetpack' ), |
| 92 | ); |
| 93 | |
| 94 | if ( false === $this->no_current ) { |
| 95 | $this->badges['none'] = esc_html__( 'Don\'t display a badge (just the campaign)', 'jetpack' ); |
| 96 | } |
| 97 | |
| 98 | $this->defaults = array( |
| 99 | 'campaign' => key( $this->campaigns ), |
| 100 | 'variant' => key( $this->variants ), |
| 101 | 'badge' => key( $this->badges ), |
| 102 | ); |
| 103 | |
| 104 | add_filter( 'widget_types_to_hide_from_legacy_widget_block', array( $this, 'hide_widget_in_block_editor' ) ); |
| 105 | } |
| 106 | |
| 107 | /** |
| 108 | * Remove the "Internet Defense League" widget from the Legacy Widget block |
| 109 | * |
| 110 | * @param array $widget_types List of widgets that are currently removed from the Legacy Widget block. |
| 111 | * @return array $widget_types New list of widgets that will be removed. |
| 112 | */ |
| 113 | public function hide_widget_in_block_editor( $widget_types ) { |
| 114 | $widget_types[] = 'internet_defense_league_widget'; |
| 115 | return $widget_types; |
| 116 | } |
| 117 | |
| 118 | /** |
| 119 | * Display the Widget. |
| 120 | * |
| 121 | * @see WP_Widget::widget() |
| 122 | * |
| 123 | * @param array $args Display arguments. |
| 124 | * @param array $instance The settings for the particular instance of the widget. |
| 125 | */ |
| 126 | public function widget( $args, $instance ) { |
| 127 | $instance = wp_parse_args( $instance, $this->defaults ); |
| 128 | |
| 129 | if ( 'none' !== $instance['badge'] ) { |
| 130 | if ( ! isset( $this->badges[ $instance['badge'] ] ) ) { |
| 131 | $instance['badge'] = $this->defaults['badge']; |
| 132 | } |
| 133 | $badge_url = esc_url( 'https://www.internetdefenseleague.org/images/badges/final/' . $instance['badge'] . '.png' ); |
| 134 | $photon_badge_url = Image_CDN_Core::cdn_url( $badge_url ); |
| 135 | $alt_text = esc_html__( 'Member of The Internet Defense League', 'jetpack' ); |
| 136 | echo $args['before_widget']; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 137 | echo '<p><a href="https://www.internetdefenseleague.org/"><img src="' . esc_url( $photon_badge_url ) . '" alt="' . esc_attr( $alt_text ) . '" style="max-width: 100%; height: auto;" /></a></p>'; |
| 138 | echo $args['after_widget']; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 139 | } |
| 140 | |
| 141 | if ( 'none' !== $instance['campaign'] ) { |
| 142 | $this->campaign = $instance['campaign']; |
| 143 | $this->variant = $instance['variant']; |
| 144 | add_action( 'wp_footer', array( $this, 'footer_script' ) ); |
| 145 | } |
| 146 | |
| 147 | /** This action is already documented in modules/widgets/gravatar-profile.php */ |
| 148 | do_action( 'jetpack_stats_extra', 'widget_view', 'internet_defense_league' ); |
| 149 | } |
| 150 | |
| 151 | /** |
| 152 | * Inline footer script. |
| 153 | */ |
| 154 | public function footer_script() { |
| 155 | if ( ! isset( $this->campaigns[ $this->campaign ] ) ) { |
| 156 | $this->campaign = $this->defaults['campaign']; |
| 157 | } |
| 158 | |
| 159 | if ( ! isset( $this->variants[ $this->variant ] ) ) { |
| 160 | $this->variant = $this->defaults['variant']; |
| 161 | } |
| 162 | |
| 163 | // On AMP endpoints, prevent a validation error from the inline script. |
| 164 | if ( class_exists( 'Jetpack_AMP_Support' ) && Jetpack_AMP_Support::is_amp_request() ) { |
| 165 | return; |
| 166 | } |
| 167 | |
| 168 | ?> |
| 169 | <script type="text/javascript"> |
| 170 | window._idl = {}; |
| 171 | _idl.campaign = "<?php echo esc_js( $this->campaign ); ?>"; |
| 172 | _idl.variant = "<?php echo esc_js( $this->variant ); ?>"; |
| 173 | (function() { |
| 174 | var idl = document.createElement('script'); |
| 175 | idl.async = true; |
| 176 | idl.src = 'https://members.internetdefenseleague.org/include/?url=' + (_idl.url || '') + '&campaign=' + (_idl.campaign || '') + '&variant=' + (_idl.variant || 'banner'); |
| 177 | document.getElementsByTagName('body')[0].appendChild(idl); |
| 178 | })(); |
| 179 | </script> |
| 180 | <?php |
| 181 | } |
| 182 | |
| 183 | /** |
| 184 | * Widget form in the dashboard. |
| 185 | * |
| 186 | * @see WP_Widget::form() |
| 187 | * |
| 188 | * @param array $instance Previously saved values from database. |
| 189 | */ |
| 190 | public function form( $instance ) { |
| 191 | $instance = wp_parse_args( $instance, $this->defaults ); |
| 192 | |
| 193 | // Hide first two form fields if no current campaigns. |
| 194 | if ( false === $this->no_current ) { |
| 195 | echo '<p><label>'; |
| 196 | echo esc_html__( 'Which Internet Defense League campaign do you want to participate in?', 'jetpack' ) . '<br />'; |
| 197 | $this->select( 'campaign', $this->campaigns, $instance['campaign'] ); |
| 198 | echo '</label></p>'; |
| 199 | |
| 200 | echo '<p><label>'; |
| 201 | echo esc_html__( 'How do you want to promote the campaign?', 'jetpack' ) . '<br />'; |
| 202 | $this->select( 'variant', $this->variants, $instance['variant'] ); |
| 203 | echo '</label></p>'; |
| 204 | } |
| 205 | |
| 206 | echo '<p><label>'; |
| 207 | echo esc_html__( 'Which badge would you like to display?', 'jetpack' ) . '<br />'; |
| 208 | $this->select( 'badge', $this->badges, $instance['badge'] ); |
| 209 | echo '</label></p>'; |
| 210 | |
| 211 | echo '<p>' . wp_kses( |
| 212 | sprintf( |
| 213 | /* translators: %s is an HTML link to the website of an internet campaign called the "Internet Defense League" */ |
| 214 | _x( 'Learn more about the %s', 'the Internet Defense League', 'jetpack' ), |
| 215 | '<a href="https://www.internetdefenseleague.org/">Internet Defense League</a>' |
| 216 | ), |
| 217 | array( |
| 218 | 'a' => array( |
| 219 | 'href' => array(), |
| 220 | ), |
| 221 | ) |
| 222 | ) . '</p>'; |
| 223 | } |
| 224 | |
| 225 | /** |
| 226 | * Display a select form field. |
| 227 | * |
| 228 | * @param string $field_name Name of the field. |
| 229 | * @param array $options Array of options. |
| 230 | * @param string $default Default option. |
| 231 | */ |
| 232 | public function select( $field_name, $options, $default = null ) { |
| 233 | echo '<select class="widefat" name="' . esc_attr( $this->get_field_name( $field_name ) ) . '">'; |
| 234 | foreach ( $options as $option_slug => $option_name ) { |
| 235 | echo '<option value="' . esc_attr( $option_slug ) . '"' . selected( $option_slug, $default, false ) . '>' . esc_html( $option_name ) . '</option>'; |
| 236 | } |
| 237 | echo '</select>'; |
| 238 | } |
| 239 | |
| 240 | /** |
| 241 | * Update widget. |
| 242 | * |
| 243 | * @see WP_Widget::update() |
| 244 | * |
| 245 | * @param array $new_instance New widget instance data. |
| 246 | * @param array $old_instance Old widget instance data. |
| 247 | */ |
| 248 | public function update( $new_instance, $old_instance ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
| 249 | $instance = array(); |
| 250 | |
| 251 | $instance['campaign'] = ( isset( $new_instance['campaign'] ) && isset( $this->campaigns[ $new_instance['campaign'] ] ) ) ? $new_instance['campaign'] : $this->defaults['campaign']; |
| 252 | $instance['variant'] = ( isset( $new_instance['variant'] ) && isset( $this->variants[ $new_instance['variant'] ] ) ) ? $new_instance['variant'] : $this->defaults['variant']; |
| 253 | $instance['badge'] = ( isset( $new_instance['badge'] ) && isset( $this->badges[ $new_instance['badge'] ] ) ) ? $new_instance['badge'] : $this->defaults['badge']; |
| 254 | |
| 255 | return $instance; |
| 256 | } |
| 257 | } |
| 258 | |
| 259 | /** |
| 260 | * Register the widget. |
| 261 | */ |
| 262 | function jetpack_internet_defense_league_init() { |
| 263 | register_widget( 'Jetpack_Internet_Defense_League_Widget' ); |
| 264 | } |
| 265 | |
| 266 | add_action( 'widgets_init', 'jetpack_internet_defense_league_init' ); |
| 267 |