PHP 8.2.31
Preview: import.php Size: 6.52 KB
/home/nshryvcy/himaltourism.com/wp-admin/includes/import.php

<?php
/**
 * WordPress Administration Importer API.
 *
 * @package WordPress
 * @subpackage Administration
 */

/**
 * Retrieves the list of importers.
 *
 * @since 2.0.0
 *
 * @global array $wp_importers
 * @return array
 */
function get_importers() {
	global $wp_importers;
	if ( is_array( $wp_importers ) ) {
		uasort( $wp_importers, '_usort_by_first_member' );
	}
	return $wp_importers;
}

/**
 * Sorts a multidimensional array by first member of each top level member.
 *
 * Used by uasort() as a callback, should not be used directly.
 *
 * @since 2.9.0
 * @access private
 *
 * @param array $a
 * @param array $b
 * @return int
 */
function _usort_by_first_member( $a, $b ) {
	return strnatcasecmp( $a[0], $b[0] );
}

/**
 * Registers importer for WordPress.
 *
 * @since 2.0.0
 *
 * @global array $wp_importers
 *
 * @param string   $id          Importer tag. Used to uniquely identify importer.
 * @param string   $name        Importer name and title.
 * @param string   $description Importer description.
 * @param callable $callback    Callback to run.
 * @return void|WP_Error Void on success. WP_Error when $callback is WP_Error.
 */
function register_importer( $id, $name, $description, $callback ) {
	global $wp_importers;
	if ( is_wp_error( $callback ) ) {
		return $callback;
	}
	$wp_importers[ $id ] = array( $name, $description, $callback );
}

/**
 * Cleanup importer.
 *
 * Removes attachment based on ID.
 *
 * @since 2.0.0
 *
 * @param string $id Importer ID.
 */
function wp_import_cleanup( $id ) {
	wp_delete_attachment( $id );
}

/**
 * Handles importer uploading and adds attachment.
 *
 * @since 2.0.0
 *
 * @return array Uploaded file's details on success, error message on failure.
 */
function wp_import_handle_upload() {
	if ( ! isset( $_FILES['import'] ) ) {
		return array(
			'error' => sprintf(
				/* translators: 1: php.ini, 2: post_max_size, 3: upload_max_filesize */
				__( 'File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your %1$s file or by %2$s being defined as smaller than %3$s in %1$s.' ),
				'php.ini',
				'post_max_size',
				'upload_max_filesize'
			),
		);
	}

	$overrides                 = array(
		'test_form' => false,
		'test_type' => false,
	);
	$_FILES['import']['name'] .= '.txt';
	$upload                    = wp_handle_upload( $_FILES['import'], $overrides );

	if ( isset( $upload['error'] ) ) {
		return $upload;
	}

	// Construct the attachment array.
	$attachment = array(
		'post_title'     => wp_basename( $upload['file'] ),
		'post_content'   => $upload['url'],
		'post_mime_type' => $upload['type'],
		'guid'           => $upload['url'],
		'context'        => 'import',
		'post_status'    => 'private',
	);

	// Save the data.
	$id = wp_insert_attachment( $attachment, $upload['file'] );

	/*
	 * Schedule a cleanup for one day from now in case of failed
	 * import or missing wp_import_cleanup() call.
	 */
	wp_schedule_single_event( time() + DAY_IN_SECONDS, 'importer_scheduled_cleanup', array( $id ) );

	return array(
		'file' => $upload['file'],
		'id'   => $id,
	);
}

/**
 * Returns a list from WordPress.org of popular importer plugins.
 *
 * @since 3.5.0
 *
 * @return array Importers with metadata for each.
 */
function wp_get_popular_importers() {
	// Include an unmodified $wp_version.
	require ABSPATH . WPINC . '/version.php';

	$locale            = get_user_locale();
	$cache_key         = 'popular_importers_' . md5( $locale . $wp_version );
	$popular_importers = get_site_transient( $cache_key );

	if ( ! $popular_importers ) {
		$url     = add_query_arg(
			array(
				'locale'  => $locale,
				'version' => $wp_version,
			),
			'http://api.wordpress.org/core/importers/1.1/'
		);
		$options = array( 'user-agent' => 'WordPress/' . $wp_version . '; ' . home_url( '/' ) );

		if ( wp_http_supports( array( 'ssl' ) ) ) {
			$url = set_url_scheme( $url, 'https' );
		}

		$response          = wp_remote_get( $url, $options );
		$popular_importers = json_decode( wp_remote_retrieve_body( $response ), true );

		if ( is_array( $popular_importers ) ) {
			set_site_transient( $cache_key, $popular_importers, 2 * DAY_IN_SECONDS );
		} else {
			$popular_importers = false;
		}
	}

	if ( is_array( $popular_importers ) ) {
		// If the data was received as translated, return it as-is.
		if ( $popular_importers['translated'] ) {
			return $popular_importers['importers'];
		}

		foreach ( $popular_importers['importers'] as &$importer ) {
			// phpcs:ignore WordPress.WP.I18n.LowLevelTranslationFunction,WordPress.WP.I18n.NonSingularStringLiteralText
			$importer['description'] = translate( $importer['description'] );
			if ( 'WordPress' !== $importer['name'] ) {
				// phpcs:ignore WordPress.WP.I18n.LowLevelTranslationFunction,WordPress.WP.I18n.NonSingularStringLiteralText
				$importer['name'] = translate( $importer['name'] );
			}
		}
		return $popular_importers['importers'];
	}

	return array(
		// slug => name, description, plugin slug, and register_importer() slug.
		'blogger'     => array(
			'name'        => __( 'Blogger' ),
			'description' => __( 'Import posts, comments, and users from a Blogger blog.' ),
			'plugin-slug' => 'blogger-importer',
			'importer-id' => 'blogger',
		),
		'wpcat2tag'   => array(
			'name'        => __( 'Categories and Tags Converter' ),
			'description' => __( 'Convert existing categories to tags or tags to categories, selectively.' ),
			'plugin-slug' => 'wpcat2tag-importer',
			'importer-id' => 'wp-cat2tag',
		),
		'livejournal' => array(
			'name'        => __( 'LiveJournal' ),
			'description' => __( 'Import posts from LiveJournal using their API.' ),
			'plugin-slug' => 'livejournal-importer',
			'importer-id' => 'livejournal',
		),
		'movabletype' => array(
			'name'        => __( 'Movable Type and TypePad' ),
			'description' => __( 'Import posts and comments from a Movable Type or TypePad blog.' ),
			'plugin-slug' => 'movabletype-importer',
			'importer-id' => 'mt',
		),
		'rss'         => array(
			'name'        => __( 'RSS' ),
			'description' => __( 'Import posts from an RSS feed.' ),
			'plugin-slug' => 'rss-importer',
			'importer-id' => 'rss',
		),
		'tumblr'      => array(
			'name'        => __( 'Tumblr' ),
			'description' => __( 'Import posts &amp; media from Tumblr using their API.' ),
			'plugin-slug' => 'tumblr-importer',
			'importer-id' => 'tumblr',
		),
		'wordpress'   => array(
			'name'        => 'WordPress',
			'description' => __( 'Import posts, pages, comments, custom fields, categories, and tags from a WordPress export file.' ),
			'plugin-slug' => 'wordpress-importer',
			'importer-id' => 'wordpress',
		),
	);
}

Directory Contents

Dirs: 1 × Files: 107

Name Size Perms Modified Actions
pomo DIR
- drwxr-xr-x 2026-02-14 07:57:35
Edit Download
7.58 KB lrw-r--r-- 2022-09-12 07:16:10
Edit Download
3.54 KB lrw-r--r-- 2022-11-16 02:54:58
Edit Download
147.15 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
11.40 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
3.58 KB lrw-r--r-- 2021-09-10 00:18:56
Edit Download
2.20 KB lrw-r--r-- 2022-08-29 23:16:10
Edit Download
2.27 KB lrw-r--r-- 2022-08-29 23:16:10
Edit Download
5.44 KB lrw-r--r-- 2021-09-10 00:29:56
Edit Download
14.65 KB lrw-r--r-- 2022-04-11 22:20:02
Edit Download
20.69 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
47.21 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
4.12 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
5.30 KB lrw-r--r-- 2019-11-02 01:27:02
Edit Download
8.28 KB lrw-r--r-- 2022-03-23 02:55:04
Edit Download
26.67 KB lrw-r--r-- 2022-03-27 01:58:08
Edit Download
2.42 KB lrw-r--r-- 2021-09-10 00:29:56
Edit Download
14.58 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
192.11 KB lrw-r--r-- 2021-08-29 12:03:58
Edit Download
11.60 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
3.20 KB lrw-r--r-- 2020-11-09 22:23:10
Edit Download
21.14 KB lrw-r--r-- 2022-05-21 04:08:14
Edit Download
12.26 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
4.07 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
24.53 KB lrw-r--r-- 2022-05-21 04:08:14
Edit Download
4.76 KB lrw-r--r-- 2021-09-09 23:33:56
Edit Download
5.58 KB lrw-r--r-- 2026-03-12 06:10:15
Edit Download
13.03 KB lrw-r--r-- 2026-03-12 06:10:15
Edit Download
4.10 KB lrw-r--r-- 2022-08-29 23:16:10
Edit Download
6.73 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
51.66 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
30.61 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
18.33 KB lrw-r--r-- 2022-09-28 05:27:14
Edit Download
58.93 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
22.86 KB lrw-r--r-- 2022-09-13 02:17:14
Edit Download
16.80 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
20.06 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
16.82 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
21.80 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
7.27 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
4.47 KB lrw-r--r-- 2022-09-13 02:17:14
Edit Download
8.26 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
1.46 KB lrw-r--r-- 2020-11-15 04:24:08
Edit Download
43.79 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
25.74 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
20.32 KB lrw-r--r-- 2022-10-04 14:17:16
Edit Download
27.12 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
14.43 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
23.69 KB lrw-r--r-- 2022-10-04 14:17:16
Edit Download
48.40 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
1.42 KB lrw-r--r-- 2022-10-04 14:17:16
Edit Download
60.52 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
5.43 KB lrw-r--r-- 2022-03-11 06:52:02
Edit Download
5.56 KB lrw-r--r-- 2020-10-21 07:50:08
Edit Download
31.59 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
13.31 KB lrw-r--r-- 2022-09-20 07:38:10
Edit Download
36.36 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
13.20 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
111.65 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
6.14 KB lrw-r--r-- 2022-09-13 02:17:14
Edit Download
19.14 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
15.31 KB lrw-r--r-- 2022-10-04 14:17:16
Edit Download
9.99 KB lrw-r--r-- 2022-10-04 14:17:16
Edit Download
6.34 KB lrw-r--r-- 2022-09-13 02:17:14
Edit Download
1.44 KB lrw-r--r-- 2019-10-09 03:49:04
Edit Download
36.59 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
18.42 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
5.98 KB lrw-r--r-- 2022-07-21 08:45:10
Edit Download
20.06 KB lrw-r--r-- 2022-09-20 09:54:12
Edit Download
5.80 KB lrw-r--r-- 2021-10-20 09:39:00
Edit Download
67.78 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
40.74 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
1.44 KB lrw-r--r-- 2021-12-07 23:50:02
Edit Download
1.07 KB lrw-r--r-- 2026-06-02 07:34:13
Edit Download
23.57 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
91.82 KB lrw-r--r-- 2026-03-12 06:10:15
Edit Download
38.23 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
37.91 KB lrw-r--r-- 2022-09-20 09:23:10
Edit Download
6.52 KB lrw-r--r-- 2022-07-29 19:52:10
Edit Download
3.71 KB lrw-r--r-- 2022-10-04 14:17:16
Edit Download
115.15 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
9.44 KB lrw-r--r-- 2022-04-18 01:14:08
Edit Download
64.38 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
44.74 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
1.27 KB lrw-r--r-- 2022-09-20 13:21:10
Edit Download
3.68 KB lrw-r--r-- 2022-09-20 13:21:10
Edit Download
32.79 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
46.00 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
26.04 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
1.06 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
4.05 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
34.08 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
87.70 KB lrw-r--r-- 2022-08-12 00:25:08
Edit Download
75.73 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
32.67 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
15.75 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
41.77 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
6.21 KB lrw-r--r-- 2021-05-10 06:57:02
Edit Download
8.22 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
95.11 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
6.82 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
45.68 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
8.69 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
69.14 KB lrw-r--r-- 2026-03-12 06:10:14
Edit Download
34.62 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
108.25 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
22.26 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
10.59 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).