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-admin/export.php | 324 ------------------------------------- 1 file changed, 324 deletions(-) delete mode 100644 srcs/wordpress/wp-admin/export.php (limited to 'srcs/wordpress/wp-admin/export.php') diff --git a/srcs/wordpress/wp-admin/export.php b/srcs/wordpress/wp-admin/export.php deleted file mode 100644 index 7597234..0000000 --- a/srcs/wordpress/wp-admin/export.php +++ /dev/null @@ -1,324 +0,0 @@ - - - add_help_tab( - array( - 'id' => 'overview', - 'title' => __( 'Overview' ), - 'content' => '

' . __( 'You can export a file of your site’s content in order to import it into another installation or platform. The export file will be an XML file format called WXR. Posts, pages, comments, custom fields, categories, and tags can be included. You can choose for the WXR file to include only certain posts or pages by setting the dropdown filters to limit the export by category, author, date range by month, or publishing status.' ) . '

' . - '

' . __( 'Once generated, your WXR file can be imported by another WordPress site or by another blogging platform able to access this format.' ) . '

', - ) -); - -get_current_screen()->set_help_sidebar( - '

' . __( 'For more information:' ) . '

' . - '

' . __( 'Documentation on Export' ) . '

' . - '

' . __( 'Support' ) . '

' -); - -// If the 'download' URL parameter is set, a WXR export file is baked and returned. -if ( isset( $_GET['download'] ) ) { - $args = array(); - - if ( ! isset( $_GET['content'] ) || 'all' == $_GET['content'] ) { - $args['content'] = 'all'; - } elseif ( 'posts' == $_GET['content'] ) { - $args['content'] = 'post'; - - if ( $_GET['cat'] ) { - $args['category'] = (int) $_GET['cat']; - } - - if ( $_GET['post_author'] ) { - $args['author'] = (int) $_GET['post_author']; - } - - if ( $_GET['post_start_date'] || $_GET['post_end_date'] ) { - $args['start_date'] = $_GET['post_start_date']; - $args['end_date'] = $_GET['post_end_date']; - } - - if ( $_GET['post_status'] ) { - $args['status'] = $_GET['post_status']; - } - } elseif ( 'pages' == $_GET['content'] ) { - $args['content'] = 'page'; - - if ( $_GET['page_author'] ) { - $args['author'] = (int) $_GET['page_author']; - } - - if ( $_GET['page_start_date'] || $_GET['page_end_date'] ) { - $args['start_date'] = $_GET['page_start_date']; - $args['end_date'] = $_GET['page_end_date']; - } - - if ( $_GET['page_status'] ) { - $args['status'] = $_GET['page_status']; - } - } elseif ( 'attachment' == $_GET['content'] ) { - $args['content'] = 'attachment'; - - if ( $_GET['attachment_start_date'] || $_GET['attachment_end_date'] ) { - $args['start_date'] = $_GET['attachment_start_date']; - $args['end_date'] = $_GET['attachment_end_date']; - } - } else { - $args['content'] = $_GET['content']; - } - - /** - * Filters the export args. - * - * @since 3.5.0 - * - * @param array $args The arguments to send to the exporter. - */ - $args = apply_filters( 'export_args', $args ); - - export_wp( $args ); - die(); -} - -require_once( ABSPATH . 'wp-admin/admin-header.php' ); - -/** - * Create the date options fields for exporting a given post type. - * - * @global wpdb $wpdb WordPress database abstraction object. - * @global WP_Locale $wp_locale WordPress date and time locale object. - * - * @since 3.1.0 - * - * @param string $post_type The post type. Default 'post'. - */ -function export_date_options( $post_type = 'post' ) { - global $wpdb, $wp_locale; - - $months = $wpdb->get_results( - $wpdb->prepare( - " - SELECT DISTINCT YEAR( post_date ) AS year, MONTH( post_date ) AS month - FROM $wpdb->posts - WHERE post_type = %s AND post_status != 'auto-draft' - ORDER BY post_date DESC - ", - $post_type - ) - ); - - $month_count = count( $months ); - if ( ! $month_count || ( 1 == $month_count && 0 == $months[0]->month ) ) { - return; - } - - foreach ( $months as $date ) { - if ( 0 == $date->year ) { - continue; - } - - $month = zeroise( $date->month, 2 ); - echo ''; - } -} -?> - -
-

- -

-

-

- -

-
-
- - -

-

- -

-
    -
  • - -
  • -
  • - -
  • -
  • -
    - - - - - -
    -
  • -
  • - - -
  • -
- -

-
    -
  • - -
  • -
  • -
    - - - - - -
    -
  • -
  • - - -
  • -
- - false, - 'can_export' => true, - ), - 'objects' -) as $post_type ) : - ?> -

- - -

-
    -
  • -
    - - - - - -
    -
  • -
- -
- - - -
-
- - -- cgit