Current Path: > home > codekrsu > > ameliagraphics.com > wp-content > plugins > jetpack > modules > > widgets
Operation : Linux premium131.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 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
authors | Directory | - | - | |
contact-info | Directory | - | - | |
eu-cookie-law | Directory | - | - | |
facebook-likebox | Directory | - | - | |
flickr | Directory | - | - | |
gallery | Directory | - | - | |
goodreads | Directory | - | - | |
google-translate | Directory | - | - | |
image-widget | Directory | - | - | |
Directory | - | - | ||
internet-defense-league | Directory | - | - | |
milestone | Directory | - | - | |
my-community | Directory | - | - | |
simple-payments | Directory | - | - | |
social-icons | Directory | - | - | |
social-media-icons | Directory | - | - | |
top-posts | Directory | - | - | |
wordpress-post-widget | Directory | - | - | |
authors.php | File | 9236 bytes | May 15 2025 20:05:26. | |
blog-stats.php | File | 6264 bytes | May 15 2025 20:05:26. | |
class-jetpack-eu-cookie-law-widget.php | File | 10834 bytes | May 15 2025 20:05:26. | |
class-jetpack-instagram-widget.php | File | 24647 bytes | May 15 2025 20:05:26. | |
contact-info.php | File | 18419 bytes | May 15 2025 20:05:26. | |
customizer-controls.css | File | 166 bytes | April 14 2025 18:35:52. | |
customizer-utils.js | File | 4154 bytes | December 16 2024 19:21:56. | |
error_log | File | 327 bytes | August 01 2025 08:47:48. | |
facebook-likebox.php | File | 15672 bytes | May 15 2025 20:05:26. | |
flickr.php | File | 8540 bytes | May 15 2025 20:05:26. | |
gallery.php | File | 16417 bytes | May 15 2025 20:05:26. | |
goodreads.php | File | 8947 bytes | May 15 2025 20:05:26. | |
google-translate.php | File | 6628 bytes | May 15 2025 20:05:26. | |
gravatar-profile.css | File | 631 bytes | April 07 2025 21:33:38. | |
gravatar-profile.php | File | 16717 bytes | May 15 2025 20:05:26. | |
image-widget.php | File | 12404 bytes | May 15 2025 20:05:26. | |
internet-defense-league.php | File | 5811 bytes | May 15 2025 20:05:26. | |
mailchimp.php | File | 4398 bytes | May 15 2025 20:05:26. | |
milestone.php | File | 346 bytes | February 23 2021 21:08:42. | |
my-community.php | File | 11193 bytes | January 20 2025 22:16:12. | |
rsslinks-widget.php | File | 10859 bytes | May 22 2023 19:04:58. | |
simple-payments.php | File | 22465 bytes | May 15 2025 20:05:26. | |
social-icons.php | File | 22657 bytes | August 01 2025 08:47:45. | |
social-media-icons.php | File | 10980 bytes | May 15 2025 20:05:26. | |
top-posts.php | File | 28318 bytes | May 15 2025 20:05:26. | |
twitter-timeline-admin.js | File | 2234 bytes | December 16 2024 19:21:56. | |
twitter-timeline.php | File | 20528 bytes | May 15 2025 20:05:26. | |
upcoming-events.php | File | 6907 bytes | May 15 2025 20:05:26. | |
wordpress-post-widget.php | File | 3799 bytes | January 20 2025 22:16:12. |
<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName /** * MailChimp popup widget. * It acts as a wrapper for the mailchimp_subscriber_popup shortcode. * * @package automattic/jetpack */ // phpcs:disable Universal.Files.SeparateFunctionsFromOO.Mixed -- TODO: Move classes to appropriately-named class files. if ( ! class_exists( 'Jetpack_MailChimp_Subscriber_Popup_Widget' ) ) { if ( ! class_exists( 'MailChimp_Subscriber_Popup' ) ) { include_once JETPACK__PLUGIN_DIR . 'modules/shortcodes/mailchimp.php'; } /** * Register MailChimp Subscriber Popup widget. */ function jetpack_mailchimp_subscriber_popup_widget_init() { register_widget( 'Jetpack_MailChimp_Subscriber_Popup_Widget' ); } add_action( 'widgets_init', 'jetpack_mailchimp_subscriber_popup_widget_init' ); /** * Add a MailChimp subscription form. */ class Jetpack_MailChimp_Subscriber_Popup_Widget extends WP_Widget { /** * Constructor */ public function __construct() { parent::__construct( 'widget_mailchimp_subscriber_popup', /** This filter is documented in modules/widgets/facebook-likebox.php */ apply_filters( 'jetpack_widget_name', __( 'MailChimp Subscriber Popup', 'jetpack' ) ), array( 'classname' => 'widget_mailchimp_subscriber_popup', 'description' => __( 'Allows displaying a popup subscription form to visitors.', 'jetpack' ), 'customize_selective_refresh' => true, ) ); add_filter( 'widget_types_to_hide_from_legacy_widget_block', array( $this, 'hide_widget_in_block_editor' ) ); } /** * Remove the "Mailchimp Subscriber Popup" 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[] = 'widget_mailchimp_subscriber_popup'; return $widget_types; } /** * Outputs the HTML for this widget. * * @param array $args An array of standard parameters for widgets in this theme. * @param array $instance An array of settings for this widget instance. * * @return void Echoes it's output */ public function widget( $args, $instance ) { $instance = wp_parse_args( $instance, array( 'code' => '' ) ); // Regular expresion that will match maichimp shortcode. $regex = '(\[mailchimp_subscriber_popup[^\]]+\])'; // Check if the shortcode exists. preg_match( $regex, $instance['code'], $matches ); // Process the shortcode only, if exists. if ( ! empty( $matches[0] ) ) { echo do_shortcode( $matches[0] ); } /** This action is documented in modules/widgets/gravatar-profile.php */ do_action( 'jetpack_stats_extra', 'widget_view', 'mailchimp_subscriber_popup' ); } /** * Deals with the settings when they are saved by the admin. * * @param array $new_instance New configuration values. * @param array $old_instance Old configuration values. * * @return array */ public function update( $new_instance, $old_instance ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable $instance = array(); $instance['code'] = MailChimp_Subscriber_Popup::reversal( $new_instance['code'] ); return $instance; } /** * Displays the form for this widget on the Widgets page of the WP Admin area. * * @param array $instance Instance configuration. * * @return string|void */ public function form( $instance ) { $instance = wp_parse_args( $instance, array( 'code' => '' ) ); $label = sprintf( wp_kses( /* Translators: %s is a link to the MailChimp support docs. */ __( 'Code: <a href="%s" target="_blank">( ? )</a>', 'jetpack' ), array( 'a' => array( 'href' => array(), 'target' => array(), ), ) ), 'https://en.support.wordpress.com/mailchimp/' ); printf( '<p><label for="%1$s">%4$s</label><textarea class="widefat" id="%1$s" name="%2$s" rows="3">%3$s</textarea></p>', esc_attr( $this->get_field_id( 'code' ) ), esc_attr( $this->get_field_name( 'code' ) ), esc_textarea( $instance['code'] ), $label // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- escaped above. ); } } }
SILENT KILLER Tool