0WUYUU'>UremoveAllExcept1iUYU-~removeallexcept#D\UD\UD\UP!D\UH \U=O\UPVUYU 4\UpD\U0RiUYU1dgetInfo1bhUYUQugetinfoPD\UGD\UD\U"D\U0 \U=O\U0BUYU 0hUYU=setInfo1kUYU]0setinfop8D\Up D\U#D\U0/ \U=O\UP2hUYU@ "6\U 4D\U J 'D\U@o \U=O\ULD\U`=D\U   ?D\U ߢ>bȝTA@D\U R`TAAD\U TABD\U Lj UA@DD\U 7I8 UAED\U O{ UA GD\U _&ݛ UAHD\U 1SXSAHD\U U1xTAID\U  SAJD\U ֿoSAKD\U |PoSALD\U ,/a?bTA0+D\U | xD\U,D\U -ڝ|D\U-D\U çh`/{D\U@PjUYU "5\U4\UQ 4D\U J (D\U. \U=O\U0kUYU@ 1.D\U J `)D\U 0 \U=O\U0BaUYU Q.D\U J D\UD\U@*D\U \U=O\U0"`UYU q.D\U J D\U`D\U +D\Up0 \U=O\U0cUYU .D\U J D\UD\U,D\U/ \U=O\U0cUYU@ @*D\U-D\UD\U D\U,D\U 1 \U=O\UPBnUYU@44\U 4D\U J -D\U@Q \U=O\UPeUYU@ K4\U@PD\U'D\U3D\U@5 \U=O\U    D\U ɗRUA0D\U NԇRUAwpforms_entries_count_previous_week_skip_trends' ); } // Update post meta data for trend calculations. update_post_meta( $form_id, 'wpforms_entries_count_previous_week', [ $form['total'], $form['count'], $count_previous_week ] ); } } /** * Get form entries. * * @since 1.8.8 * * @return array */ protected function get_entries(): array { return ( new EntriesCount() )->get_form_trends(); } /** * Register entries count schedule. * * @since 1.8.8 */ private function register_entries_count_schedule() { if ( ! $this->allow_entries_count_lite && wp_next_scheduled( 'wpforms_weekly_entries_count_cron' ) ) { wp_clear_scheduled_hook( 'wpforms_weekly_entries_count_cron' ); return; } if ( $this->allow_entries_count_lite && ! wp_next_scheduled( 'wpforms_weekly_entries_count_cron' ) ) { // Since v1.9.1 we use a single event and manually reoccur it // because a recurring event cannot guarantee // its firing at the same time during WP_CLI execution. wp_schedule_single_event( $this->get_next_launch_time(), 'wpforms_weekly_entries_count_cron' ); } } /** * Get next Monday midnight with WordPress offset. * * @since 1.9.1 * * @return int */ protected function get_next_launch_time(): int { $datetime = date_create( 'next monday', wp_timezone() ); if ( ! $datetime ) { return time() + WEEK_IN_SECONDS; } return absint( $datetime->getTimestamp() ); } /** * Check if the given form_id was published less than or equal to 7 days ago. * * @since 1.8.8 * * @param int $form_id The ID of the form (post). * * @return bool */ private function is_form_created_in_7days( int $form_id ): bool { // Get the form (post) publish date. $date_created = get_post_field( 'post_date', $form_id, 'raw' ); // If the form date is not available, return false. if ( empty( $date_created ) ) { return false; } // Calculate the time difference between the post date and the current date. $time_difference = time() - strtotime( $date_created ); // Compare the time difference with 7 days in seconds. return $time_difference <= 7 * DAY_IN_SECONDS; } } https://mhedv.de/wp-sitemap-posts-page-1.xml