403Webshell
Server IP : 10.19.1.101  /  Your IP : 216.73.216.158
Web Server : Apache
System : Linux web1f13.kinghost.net 5.4.282-1.el8.elrepo.x86_64 #1 SMP Mon Aug 19 18:33:22 EDT 2024 x86_64
User : schererimoveisrs ( 170628)
PHP Version : 7.4.33
Disable Function : apache_child_terminate,c99_buff_prepare,c99_sess_put,dl,exec,leak,link,myshellexec,openlog,passthru,pclose,pcntl_exec,php_check_syntax,php_strip_whitespace,popen,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,shell_exec,show_source,symlink,system,socket_listen,socket_create_listen,putenv
MySQL : ON  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/schererimoveisrs/www/wp-content/plugins/elementor/modules/library/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/schererimoveisrs/www/wp-content/plugins/elementor/modules/library//user-favorites.php
<?php
namespace Elementor\Modules\Library;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

class User_Favorites {
	const USER_META_KEY = 'elementor_library_favorites';

	/**
	 * @var int
	 */
	private $user_id;

	/**
	 * @var array|null
	 */
	private $cache;

	/**
	 * User_Favorites constructor.
	 *
	 * @param $user_id
	 */
	public function __construct( $user_id ) {
		$this->user_id = $user_id;
	}

	/**
	 * @param null  $vendor
	 * @param null  $resource_name
	 * @param false $ignore_cache
	 *
	 * @return array
	 */
	public function get( $vendor = null, $resource_name = null, $ignore_cache = false ) {
		if ( $ignore_cache || empty( $this->cache ) ) {
			$this->cache = get_user_meta( $this->user_id, self::USER_META_KEY, true );
		}

		if ( ! $this->cache || ! is_array( $this->cache ) ) {
			return [];
		}

		if ( $vendor && $resource_name ) {
			$key = $this->get_key( $vendor, $resource_name );

			return isset( $this->cache[ $key ] ) ? $this->cache[ $key ] : [];
		}

		return $this->cache;
	}

	/**
	 * @param $vendor
	 * @param $resource_name
	 * @param $id
	 *
	 * @return bool
	 */
	public function exists( $vendor, $resource_name, $id ) {
		return in_array( $id, $this->get( $vendor, $resource_name ), true );
	}

	/**
	 * @param       $vendor
	 * @param       $resource_name
	 * @param array $value
	 *
	 * @return $this
	 * @throws \Exception If the favorites cannot be saved.
	 */
	public function save( $vendor, $resource_name, $value = [] ) {
		$all_favorites = $this->get();

		$all_favorites[ $this->get_key( $vendor, $resource_name ) ] = $value;

		$result = update_user_meta( $this->user_id, self::USER_META_KEY, $all_favorites );

		if ( false === $result ) {
			throw new \Exception( 'Failed to save user favorites.' );
		}

		$this->cache = $all_favorites;

		return $this;
	}

	/**
	 * @param $vendor
	 * @param $resource_name
	 * @param $id
	 *
	 * @return $this
	 * @throws \Exception If the favorites cannot be added.
	 */
	public function add( $vendor, $resource_name, $id ) {
		$favorites = $this->get( $vendor, $resource_name );

		if ( in_array( $id, $favorites, true ) ) {
			return $this;
		}

		$favorites[] = $id;

		$this->save( $vendor, $resource_name, $favorites );

		return $this;
	}

	/**
	 * @param $vendor
	 * @param $resource_name
	 * @param $id
	 *
	 * @return $this
	 * @throws \Exception If the favorites cannot be removed.
	 */
	public function remove( $vendor, $resource_name, $id ) {
		$favorites = $this->get( $vendor, $resource_name );

		if ( ! in_array( $id, $favorites, true ) ) {
			return $this;
		}

		$favorites = array_filter( $favorites, function ( $item ) use ( $id ) {
			return $item !== $id;
		} );

		$this->save( $vendor, $resource_name, $favorites );

		return $this;
	}

	/**
	 * @param $vendor
	 * @param $resource_name
	 *
	 * @return string
	 */
	private function get_key( $vendor, $resource_name ) {
		return "{$vendor}/{$resource_name}";
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit