From 5bf66662a9bdd62c5bccab15e607cd95cfb8fcab Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Mon, 27 Jul 2020 10:05:23 +0200 Subject: Removed wordpress and phpmyadmin, my server doesn't handle it well and it brings shame on my familly --- srcs/wordpress/wp-includes/blocks/archives.php | 143 ------------------------- 1 file changed, 143 deletions(-) delete mode 100644 srcs/wordpress/wp-includes/blocks/archives.php (limited to 'srcs/wordpress/wp-includes/blocks/archives.php') diff --git a/srcs/wordpress/wp-includes/blocks/archives.php b/srcs/wordpress/wp-includes/blocks/archives.php deleted file mode 100644 index 172b1c7..0000000 --- a/srcs/wordpress/wp-includes/blocks/archives.php +++ /dev/null @@ -1,143 +0,0 @@ - '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 = ' - '; - - return sprintf( - '
%2$s
', - esc_attr( $class ), - $block_content - ); - } - - $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 ) ) { - - return sprintf( - '
%2$s
', - $classnames, - __( 'No archives to show.' ) - ); - } - - return sprintf( - '', - $classnames, - $archives - ); -} - -/** - * Register archives block. - */ -function register_block_core_archives() { - register_block_type( - 'core/archives', - array( - 'attributes' => array( - 'align' => array( - 'type' => 'string', - 'enum' => array( 'left', 'center', 'right', 'wide', 'full' ), - ), - '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' ); -- cgit