ProShell v2.0
Dashboard
Server Info
Server: 158.106.128.192
PHP: 8.2.33
home
planet5
public_html
bansibaba.com
wp-includes
2026-09-15 21:27:07
Editing: holiday-snow.php
Cancel
Save Changes
<?php /** * Holiday Snow * Adds falling snow to a blog starting December 1 and ending January 3. * Not a module that is activated/deactivated * First Introduced: 2.0.3 ?? * Requires Connection: No * Auto Activate: Yes */ class Jetpack_Holiday_Snow_Settings { function __construct() { add_filter( 'admin_init' , array( &$this , 'register_fields' ) ); } public function register_fields() { register_setting( 'general', jetpack_holiday_snow_option_name(), 'esc_attr' ); add_settings_field( jetpack_holiday_snow_option_name(), '<label for="' . esc_attr( jetpack_holiday_snow_option_name() ) . '">' . __( 'Snow' , 'jetpack') . '</label>' , array( &$this, 'blog_field_html' ) , 'general' ); add_action( 'update_option_' . jetpack_holiday_snow_option_name(), array( &$this, 'holiday_snow_option_updated' ) ); } public function blog_field_html() { $id = esc_attr( jetpack_holiday_snow_option_name() ); ?> <label for="<?php echo $id; ?>"> <input type="checkbox" name="<?php echo $id; ?>" id="<?php echo $id; ?>" value="letitsnow"<?php checked( get_option( jetpack_holiday_snow_option_name() ), 'letitsnow' ); ?> /> <span><?php _e( 'Show falling snow on my blog until January 4<sup>th</sup>.' , 'jetpack'); ?></span> </label> <?php } public function holiday_snow_option_updated() { /** * Fires when the holiday snow option is updated. * * @module theme-tools * * @since 2.0.3 */ do_action( 'jetpack_holiday_snow_option_updated' ); } } function jetpack_holiday_snow_script() { /** * Allow holiday snow. * * Note: there's no actual randomness involved in whether it snows * or not, despite the filter mentioning a "chance of snow." * * @module theme-tools * * @since 2.0.3 * * @param bool True to allow snow, false to disable it. */ if ( ! apply_filters( 'jetpack_holiday_chance_of_snow', true ) ) return; /** * Fires when it's snowing. * * @module theme-tools * * @since 2.0.3 */ do_action( 'jetpack_holiday_snowing' ); /** * Filter the holiday snow JavaScript URL. * * @module theme-tools * * @since 2.0.3 * * @param str URL to the holiday snow JavaScript file. */ $snowstorm_url = apply_filters( 'jetpack_holiday_snow_js_url', plugins_url( 'holiday-snow/snowstorm.js', __FILE__ ) ); wp_enqueue_script( 'snowstorm', $snowstorm_url, array(), '1.43.20111201', true ); } function jetpack_maybe_holiday_snow() { if ( ! jetpack_is_holiday_snow_season() ) return; if ( is_admin() ) { global $jetpack_holiday_snow; $jetpack_holiday_snow = new Jetpack_Holiday_Snow_Settings(); } elseif ( get_option( jetpack_holiday_snow_option_name() ) ) { add_action( 'init', 'jetpack_holiday_snow_script' ); } } function jetpack_holiday_snow_option_name() { /** * Filter the holiday snow option name. * * @module theme-tools * * @since 2.0.3 * * @param str The holiday snow option name. */ return apply_filters( 'jetpack_holiday_snow_option_name', 'jetpack_holiday_snow_enabled' ); } function jetpack_show_holiday_snow_option() { // Always show snow option if a custom snow season has been set. if ( has_filter( 'jetpack_is_holiday_snow_season' ) ) { return true; } $today = time(); $first_option_day = mktime( 0, 0, 0, 11, 24 ); // Nov 24 $last_option_day = mktime( 0, 0, 0, 1, 4 ); // Jan 4 return ( $today >= $first_option_day || $today < $last_option_day ); } function jetpack_is_holiday_snow_season() { $today = time(); $first_snow_day = mktime( 0, 0, 0, 12, 1 ); $last_snow_day = mktime( 0, 0, 0, 1, 4 ); $snow = ( $today >= $first_snow_day || $today < $last_snow_day ); /** * Filter whether it's winter or not. * * You can use this filter if, for example, you live in the * Southern Hemisphere. In that case, the dates for winter * above are incorrect for your location. * * @module theme-tools * * @since 2.1.0 * * @param bool $snow True if it's snow season, false if not. */ return apply_filters( 'jetpack_is_holiday_snow_season', $snow ); } jetpack_maybe_holiday_snow();
Upload Files
Cancel
Upload
Create New
Cancel
Create
Change Permissions
Cancel
Save
Change Date
Cancel
Save
Rename Item
Cancel
Save
Confirm Delete
Are you sure you want to delete the selected items?
Cancel
Delete