| Server IP : 82.208.35.60 / Your IP : 216.73.216.236 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/d2m/sofident_cz/wp-content/plugins/sitepress-multilingual-cms/vendor/wpml/wp/classes/ |
Upload File : |
<?php
namespace WPML\LIB\WP;
use function WPML\FP\curryN;
use function WPML\FP\partialRight;
class User {
/**
* @return int
*/
public static function getCurrentId() {
return get_current_user_id();
}
/**
* Curried function to update the user meta.
*
* @param int $userId
* @param string $metaKey
* @param mixed $metaValue
*
* @return callable|int|bool
*/
public static function updateMeta( $userId = null, $metaKey = null, $metaValue = null ) {
return call_user_func_array( curryN( 3, 'update_user_meta' ), func_get_args() );
}
/**
* Curried function to get the user meta
*
* @param int $userId
* @param string $metaKey
*
* @return callable|mixed
*/
public static function getMetaSingle( $userId = null, $metaKey = null ) {
return call_user_func_array( curryN( 2, partialRight( 'get_user_meta', true ) ), func_get_args() );
}
}