diff -r c7c34916027a -r 177826044cd9 wp/wp-includes/blocks/archives.php
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/wp/wp-includes/blocks/archives.php Mon Oct 14 18:28:13 2019 +0200
@@ -0,0 +1,147 @@
+ 'monthly',
+ 'format' => 'option',
+ 'show_post_count' => $show_post_count,
+ )
+ );
+
+ $dropdown_args['echo'] = 0;
+
+ $archives = wp_get_archives( $dropdown_args );
+
+ switch ( $dropdown_args['type'] ) {
+ case 'yearly':
+ $label = __( 'Select Year' );
+ break;
+ case 'monthly':
+ $label = __( 'Select Month' );
+ break;
+ case 'daily':
+ $label = __( 'Select Day' );
+ break;
+ case 'weekly':
+ $label = __( 'Select Week' );
+ break;
+ default:
+ $label = __( 'Select Post' );
+ break;
+ }
+
+ $label = esc_attr( $label );
+
+ $block_content = '
+ ';
+
+ $block_content = sprintf(
+ '
%2$s
',
+ esc_attr( $class ),
+ $block_content
+ );
+ } else {
+
+ $class .= ' wp-block-archives-list';
+
+ /** This filter is documented in wp-includes/widgets/class-wp-widget-archives.php */
+ $archives_args = apply_filters(
+ 'widget_archives_args',
+ array(
+ 'type' => 'monthly',
+ 'show_post_count' => $show_post_count,
+ )
+ );
+
+ $archives_args['echo'] = 0;
+
+ $archives = wp_get_archives( $archives_args );
+
+ $classnames = esc_attr( $class );
+
+ if ( empty( $archives ) ) {
+
+ $block_content = sprintf(
+ '%2$s
',
+ $classnames,
+ __( 'No archives to show.' )
+ );
+ } else {
+
+ $block_content = sprintf(
+ '',
+ $classnames,
+ $archives
+ );
+ }
+ }
+
+ return $block_content;
+}
+
+/**
+ * Register archives block.
+ */
+function register_block_core_archives() {
+ register_block_type(
+ 'core/archives',
+ array(
+ 'attributes' => array(
+ 'align' => array(
+ 'type' => 'string',
+ ),
+ 'className' => array(
+ 'type' => 'string',
+ ),
+ 'displayAsDropdown' => array(
+ 'type' => 'boolean',
+ 'default' => false,
+ ),
+ 'showPostCounts' => array(
+ 'type' => 'boolean',
+ 'default' => false,
+ ),
+ ),
+ 'render_callback' => 'render_block_core_archives',
+ )
+ );
+}
+
+add_action( 'init', 'register_block_core_archives' );