PHP 8.2.31
Preview: geo-location.php Size: 2.44 KB
/home/nshryvcy/himaltourism.com/wp-content/plugins/jetpack/modules/geo-location.php

<?php
/**
 * Module: geo-location
 *
 * @package automattic/jetpack
 */

/**
 * Adds support for geo-location features.
 */

require_once __DIR__ . '/geo-location/class.jetpack-geo-location.php';

/**
 * Geo-location shortcode callback for display of location data associated with a post.
 *
 * Usage with current global $post:
 * [geo-location]
 *
 * Usage with specific post ID:
 * [geo-location post=5]
 *
 * @param array $attributes Shortcode attributes.
 */
function jetpack_geo_shortcode( $attributes ) {
	$attributes = shortcode_atts(
		array(
			'post' => null,
			'id'   => null,
		),
		$attributes
	);
	return jetpack_geo_get_location( $attributes['post'] ? $attributes['post'] : $attributes['id'] );
}
add_shortcode( 'geo-location', 'jetpack_geo_shortcode' );

/**
 * Get the geo-location data associated with the supplied post ID, if it's available
 * and marked as being available for public display.  The returned array will contain
 * "latitude", "longitude" and "label" keys.
 *
 * If you do not supply a value for $post_id, the global $post will be used, if
 * available.
 *
 * @param integer|null $post_id Post ID.
 *
 * @return array|null
 */
function jetpack_geo_get_data( $post_id = null ) {
	$geo = Jetpack_Geo_Location::init();

	if ( ! $post_id ) {
		$post_id = $geo->get_post_id();
	}

	$meta_values = $geo->get_meta_values( $post_id );

	if ( ! $meta_values['is_public'] || ! $meta_values['is_populated'] ) {
		return null;
	}

	return array(
		'latitude'  => $meta_values['latitude'],
		'longitude' => $meta_values['longitude'],
		'label'     => $meta_values['label'],
	);
}

/**
 * Display the label HTML for the geo-location information associated with the supplied
 * post ID.
 *
 * If you do not supply a value for $post_id, the global $post will be used, if
 * available.
 *
 * @param integer|null $post_id Post ID.
 *
 * @return void
 */
function jetpack_geo_display_location( $post_id = null ) {
	echo jetpack_geo_get_location( $post_id ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Escaped in `Jetpack_Geo_Location::get_location_label`.
}

/**
 * Return the label HTML for the geo-location information associated with the supplied
 * post ID.
 *
 * If you do not supply a value for $post_id, the global $post will be used, if
 * available.
 *
 * @param integer|null $post_id Post ID.
 *
 * @return string
 */
function jetpack_geo_get_location( $post_id = null ) {
	return Jetpack_Geo_Location::init()->get_location_label( $post_id );
}

Directory Contents

Dirs: 42 × Files: 53

Name Size Perms Modified Actions
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
carousel DIR
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
comments DIR
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:21
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:21
Edit Download
gravatar DIR
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
likes DIR
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
markdown DIR
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
masterbar DIR
- drwxr-xr-x 2023-04-04 05:35:21
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
photon DIR
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:21
Edit Download
protect DIR
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
scan DIR
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
seo-tools DIR
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:21
Edit Download
- drwxr-xr-x 2023-04-04 05:35:21
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
site-icon DIR
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
sitemaps DIR
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
sso DIR
- drwxr-xr-x 2023-04-04 05:35:21
Edit Download
stats DIR
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:21
Edit Download
widgets DIR
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
wordads DIR
- drwxr-xr-x 2023-04-04 05:35:21
Edit Download
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
wpcom-tos DIR
- drwxr-xr-x 2023-04-04 05:35:20
Edit Download
644 B lrw-r--r-- 2023-04-04 05:35:21
Edit Download
564 B lrw-r--r-- 2023-04-04 05:35:21
Edit Download
7.98 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
993 B lrw-r--r-- 2023-04-04 05:35:21
Edit Download
7.47 KB lrw-r--r-- 2023-04-04 05:35:21
Edit Download
12.27 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
1.53 KB lrw-r--r-- 2023-04-04 05:35:21
Edit Download
1.37 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
2.39 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
2.44 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
501 B lrw-r--r-- 2023-04-04 05:35:20
Edit Download
3.72 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
11.81 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
8.14 KB lrw-r--r-- 2023-04-04 05:35:21
Edit Download
484 B lrw-r--r-- 2023-04-04 05:35:21
Edit Download
4.61 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
1.12 KB lrw-r--r-- 2023-04-04 05:35:21
Edit Download
21.35 KB lrw-r--r-- 2023-04-04 05:35:21
Edit Download
1007 B lrw-r--r-- 2023-04-04 05:35:21
Edit Download
1.56 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
2.93 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
46.44 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
28.17 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
3.51 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
7.94 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
12.09 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
781 B lrw-r--r-- 2023-04-04 05:35:20
Edit Download
19.84 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
596 B lrw-r--r-- 2023-04-04 05:35:20
Edit Download
533 B lrw-r--r-- 2023-04-04 05:35:20
Edit Download
28.83 KB lrw-r--r-- 2023-04-04 05:35:21
Edit Download
4.55 KB lrw-r--r-- 2023-04-04 05:35:21
Edit Download
2.12 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
1.17 KB lrw-r--r-- 2023-04-04 05:35:21
Edit Download
1.52 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
1.61 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
6.06 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
4.37 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
1.28 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
38.12 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
51.87 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
31.93 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
2.52 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
1.05 KB lrw-r--r-- 2023-04-04 05:35:21
Edit Download
1.70 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
830 B lrw-r--r-- 2023-04-04 05:35:21
Edit Download
1007 B lrw-r--r-- 2023-04-04 05:35:20
Edit Download
297 B lrw-r--r-- 2023-04-04 05:35:21
Edit Download
475 B lrw-r--r-- 2023-04-04 05:35:21
Edit Download
2.85 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download
631 B lrw-r--r-- 2023-04-04 05:35:20
Edit Download
577 B lrw-r--r-- 2023-04-04 05:35:20
Edit Download
1.91 KB lrw-r--r-- 2023-04-04 05:35:20
Edit Download

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