author | ymh <ymh.work@gmail.com> |
Mon, 08 Sep 2025 19:44:41 +0200 | |
changeset 23 | 417f20492bf7 |
parent 21 | 48c4eec2b7e6 |
permissions | -rw-r--r-- |
9 | 1 |
<?php |
2 |
/** |
|
3 |
* Server-side rendering of the `core/calendar` block. |
|
4 |
* |
|
5 |
* @package WordPress |
|
6 |
*/ |
|
7 |
||
8 |
/** |
|
9 |
* Renders the `core/calendar` block on server. |
|
10 |
* |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
11 |
* @since 5.2.0 |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
12 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
13 |
* @global int $monthnum. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
14 |
* @global int $year. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
15 |
* |
9 | 16 |
* @param array $attributes The block attributes. |
17 |
* |
|
18 |
* @return string Returns the block content. |
|
19 |
*/ |
|
20 |
function render_block_core_calendar( $attributes ) { |
|
21 |
global $monthnum, $year; |
|
22 |
||
19 | 23 |
// Calendar shouldn't be rendered |
24 |
// when there are no published posts on the site. |
|
25 |
if ( ! block_core_calendar_has_published_posts() ) { |
|
26 |
if ( is_user_logged_in() ) { |
|
27 |
return '<div>' . __( 'The calendar block is hidden because there are no published posts.' ) . '</div>'; |
|
28 |
} |
|
29 |
return ''; |
|
30 |
} |
|
31 |
||
9 | 32 |
$previous_monthnum = $monthnum; |
33 |
$previous_year = $year; |
|
34 |
||
35 |
if ( isset( $attributes['month'] ) && isset( $attributes['year'] ) ) { |
|
36 |
$permalink_structure = get_option( 'permalink_structure' ); |
|
37 |
if ( |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
38 |
str_contains( $permalink_structure, '%monthnum%' ) && |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
39 |
str_contains( $permalink_structure, '%year%' ) |
9 | 40 |
) { |
41 |
$monthnum = $attributes['month']; |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
42 |
$year = $attributes['year']; |
9 | 43 |
} |
44 |
} |
|
45 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
46 |
$color_block_styles = array(); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
47 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
48 |
// Text color. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
49 |
$preset_text_color = array_key_exists( 'textColor', $attributes ) ? "var:preset|color|{$attributes['textColor']}" : null; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
50 |
$custom_text_color = $attributes['style']['color']['text'] ?? null; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
51 |
$color_block_styles['text'] = $preset_text_color ? $preset_text_color : $custom_text_color; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
52 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
53 |
// Background Color. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
54 |
$preset_background_color = array_key_exists( 'backgroundColor', $attributes ) ? "var:preset|color|{$attributes['backgroundColor']}" : null; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
55 |
$custom_background_color = $attributes['style']['color']['background'] ?? null; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
56 |
$color_block_styles['background'] = $preset_background_color ? $preset_background_color : $custom_background_color; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
57 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
58 |
// Generate color styles and classes. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
59 |
$styles = wp_style_engine_get_styles( array( 'color' => $color_block_styles ), array( 'convert_vars_to_classnames' => true ) ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
60 |
$inline_styles = empty( $styles['css'] ) ? '' : sprintf( ' style="%s"', esc_attr( $styles['css'] ) ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
61 |
$classnames = empty( $styles['classnames'] ) ? '' : ' ' . esc_attr( $styles['classnames'] ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
62 |
if ( isset( $attributes['style']['elements']['link']['color']['text'] ) ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
63 |
$classnames .= ' has-link-color'; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
64 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
65 |
// Apply color classes and styles to the calendar. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
66 |
$calendar = str_replace( '<table', '<table' . $inline_styles, get_calendar( true, false ) ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
67 |
$calendar = str_replace( 'class="wp-calendar-table', 'class="wp-calendar-table' . $classnames, $calendar ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
68 |
|
18 | 69 |
$wrapper_attributes = get_block_wrapper_attributes(); |
70 |
$output = sprintf( |
|
71 |
'<div %1$s>%2$s</div>', |
|
72 |
$wrapper_attributes, |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
73 |
$calendar |
9 | 74 |
); |
75 |
||
76 |
$monthnum = $previous_monthnum; |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
77 |
$year = $previous_year; |
16 | 78 |
|
79 |
return $output; |
|
9 | 80 |
} |
81 |
||
82 |
/** |
|
83 |
* Registers the `core/calendar` block on server. |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
84 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
85 |
* @since 5.2.0 |
9 | 86 |
*/ |
87 |
function register_block_core_calendar() { |
|
16 | 88 |
register_block_type_from_metadata( |
89 |
__DIR__ . '/calendar', |
|
9 | 90 |
array( |
91 |
'render_callback' => 'render_block_core_calendar', |
|
92 |
) |
|
93 |
); |
|
94 |
} |
|
95 |
||
96 |
add_action( 'init', 'register_block_core_calendar' ); |
|
19 | 97 |
|
98 |
/** |
|
99 |
* Returns whether or not there are any published posts. |
|
100 |
* |
|
101 |
* Used to hide the calendar block when there are no published posts. |
|
102 |
* This compensates for a known Core bug: https://core.trac.wordpress.org/ticket/12016 |
|
103 |
* |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
104 |
* @since 5.9.0 |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
105 |
* |
19 | 106 |
* @return bool Has any published posts or not. |
107 |
*/ |
|
108 |
function block_core_calendar_has_published_posts() { |
|
109 |
// Multisite already has an option that stores the count of the published posts. |
|
110 |
// Let's use that for multisites. |
|
111 |
if ( is_multisite() ) { |
|
112 |
return 0 < (int) get_option( 'post_count' ); |
|
113 |
} |
|
114 |
||
115 |
// On single sites we try our own cached option first. |
|
116 |
$has_published_posts = get_option( 'wp_calendar_block_has_published_posts', null ); |
|
117 |
if ( null !== $has_published_posts ) { |
|
118 |
return (bool) $has_published_posts; |
|
119 |
} |
|
120 |
||
121 |
// No cache hit, let's update the cache and return the cached value. |
|
122 |
return block_core_calendar_update_has_published_posts(); |
|
123 |
} |
|
124 |
||
125 |
/** |
|
126 |
* Queries the database for any published post and saves |
|
127 |
* a flag whether any published post exists or not. |
|
128 |
* |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
129 |
* @since 5.9.0 |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
130 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
131 |
* @global wpdb $wpdb WordPress database abstraction object. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
132 |
* |
19 | 133 |
* @return bool Has any published posts or not. |
134 |
*/ |
|
135 |
function block_core_calendar_update_has_published_posts() { |
|
136 |
global $wpdb; |
|
137 |
$has_published_posts = (bool) $wpdb->get_var( "SELECT 1 as test FROM {$wpdb->posts} WHERE post_type = 'post' AND post_status = 'publish' LIMIT 1" ); |
|
138 |
update_option( 'wp_calendar_block_has_published_posts', $has_published_posts ); |
|
139 |
return $has_published_posts; |
|
140 |
} |
|
141 |
||
142 |
// We only want to register these functions and actions when |
|
143 |
// we are on single sites. On multi sites we use `post_count` option. |
|
144 |
if ( ! is_multisite() ) { |
|
145 |
/** |
|
146 |
* Handler for updating the has published posts flag when a post is deleted. |
|
147 |
* |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
148 |
* @since 5.9.0 |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
149 |
* |
19 | 150 |
* @param int $post_id Deleted post ID. |
151 |
*/ |
|
152 |
function block_core_calendar_update_has_published_post_on_delete( $post_id ) { |
|
153 |
$post = get_post( $post_id ); |
|
154 |
||
155 |
if ( ! $post || 'publish' !== $post->post_status || 'post' !== $post->post_type ) { |
|
156 |
return; |
|
157 |
} |
|
158 |
||
159 |
block_core_calendar_update_has_published_posts(); |
|
160 |
} |
|
161 |
||
162 |
/** |
|
163 |
* Handler for updating the has published posts flag when a post status changes. |
|
164 |
* |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
165 |
* @since 5.9.0 |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
166 |
* |
19 | 167 |
* @param string $new_status The status the post is changing to. |
168 |
* @param string $old_status The status the post is changing from. |
|
169 |
* @param WP_Post $post Post object. |
|
170 |
*/ |
|
171 |
function block_core_calendar_update_has_published_post_on_transition_post_status( $new_status, $old_status, $post ) { |
|
172 |
if ( $new_status === $old_status ) { |
|
173 |
return; |
|
174 |
} |
|
175 |
||
176 |
if ( 'post' !== get_post_type( $post ) ) { |
|
177 |
return; |
|
178 |
} |
|
179 |
||
180 |
if ( 'publish' !== $new_status && 'publish' !== $old_status ) { |
|
181 |
return; |
|
182 |
} |
|
183 |
||
184 |
block_core_calendar_update_has_published_posts(); |
|
185 |
} |
|
186 |
||
187 |
add_action( 'delete_post', 'block_core_calendar_update_has_published_post_on_delete' ); |
|
188 |
add_action( 'transition_post_status', 'block_core_calendar_update_has_published_post_on_transition_post_status', 10, 3 ); |
|
189 |
} |