Current File : /home/bdmcricketindia.in/public_html/wp-includes/class-wp-theme-json-resolver.php
<?php
/**
 * WP_Theme_JSON_Resolver class
 *
 * @package WordPress
 * @subpackage Theme
 * @since 5.8.0
 */

/**
 * Class that abstracts the processing of the different data sources
 * for site-level config and offers an API to work with them.
 *
 * This class is for internal core usage and is not supposed to be used by extenders (plugins and/or themes).
 * This is a low-level API that may need to do breaking changes. Please,
 * use get_global_settings(), get_global_styles(), and get_global_stylesheet() instead.
 *
 * @access private
 */
#[AllowDynamicProperties]
class WP_Theme_JSON_Resolver {

	/**
	 * Container for keep track of registered blocks.
	 *
	 * @since 6.1.0
	 * @var array
	 */
	protected static $blocks_cache = array(
		'core'   => array(),
		'blocks' => array(),
		'theme'  => array(),
		'user'   => array(),
	);

	/**
	 * Container for data coming from core.
	 *
	 * @since 5.8.0
	 * @var WP_Theme_JSON
	 */
	protected static $core = null;

	/**
	 * Container for data coming from the blocks.
	 *
	 * @since 6.1.0
	 * @var WP_Theme_JSON
	 */
	protected static $blocks = null;

	/**
	 * Container for data coming from the theme.
	 *
	 * @since 5.8.0
	 * @var WP_Theme_JSON
	 */
	protected static $theme = null;

	/**
	 * Container for data coming from the user.
	 *
	 * @since 5.9.0
	 * @var WP_Theme_JSON
	 */
	protected static $user = null;

	/**
	 * Stores the ID of the custom post type
	 * that holds the user data.
	 *
	 * @since 5.9.0
	 * @var int
	 */
	protected static $user_custom_post_type_id = null;

	/**
	 * Container to keep loaded i18n schema for `theme.json`.
	 *
	 * @since 5.8.0 As `$theme_json_i18n`.
	 * @since 5.9.0 Renamed from `$theme_json_i18n` to `$i18n_schema`.
	 * @var array
	 */
	protected static $i18n_schema = null;

	/**
	 * `theme.json` file cache.
	 *
	 * @since 6.1.0
	 * @var array
	 */
	protected static $theme_json_file_cache = array();

	/**
	 * Processes a file that adheres to the theme.json schema
	 * and returns an array with its contents, or a void array if none found.
	 *
	 * @since 5.8.0
	 * @since 6.1.0 Added caching.
	 *
	 * @param string $file_path Path to file. Empty if no file.
	 * @return array Contents that adhere to the theme.json schema.
	 */
	protected static function read_json_file( $file_path ) {
		if ( $file_path ) {
			if ( array_key_exists( $file_path, static::$theme_json_file_cache ) ) {
				return static::$theme_json_file_cache[ $file_path ];
			}

			$decoded_file = wp_json_file_decode( $file_path, array( 'associative' => true ) );
			if ( is_array( $decoded_file ) ) {
				static::$theme_json_file_cache[ $file_path ] = $decoded_file;
				return static::$theme_json_file_cache[ $file_path ];
			}
		}

		return array();
	}

	/**
	 * Returns a data structure used in theme.json translation.
	 *
	 * @since 5.8.0
	 * @deprecated 5.9.0
	 *
	 * @return array An array of theme.json fields that are translatable and the keys that are translatable.
	 */
	public static function get_fields_to_translate() {
		_deprecated_function( __METHOD__, '5.9.0' );
		return array();
	}

	/**
	 * Given a theme.json structure modifies it in place to update certain values
	 * by its translated strings according to the language set by the user.
	 *
	 * @since 5.8.0
	 *
	 * @param array  $theme_json The theme.json to translate.
	 * @param string $domain     Optional. Text domain. Unique identifier for retrieving translated strings.
	 *                           Default 'default'.
	 * @return array Returns the modified $theme_json_structure.
	 */
	protected static function translate( $theme_json, $domain = 'default' ) {
		if ( null === static::$i18n_schema ) {
			$i18n_schema         = wp_json_file_decode( __DIR__ . '/theme-i18n.json' );
			static::$i18n_schema = null === $i18n_schema ? array() : $i18n_schema;
		}

		return translate_settings_using_i18n_schema( static::$i18n_schema, $theme_json, $domain );
	}

	/**
	 * Returns core's origin config.
	 *
	 * @since 5.8.0
	 *
	 * @return WP_Theme_JSON Entity that holds core data.
	 */
	public static function get_core_data() {
		if ( null !== static::$core && static::has_same_registered_blocks( 'core' ) ) {
			return static::$core;
		}

		$config = static::read_json_file( __DIR__ . '/theme.json' );
		$config = static::translate( $config );

		/**
		 * Filters the default data provided by WordPress for global styles & settings.
		 *
		 * @since 6.1.0
		 *
		 * @param WP_Theme_JSON_Data $theme_json Class to access and update the underlying data.
		 */
		$theme_json = apply_filters( 'wp_theme_json_data_default', new WP_Theme_JSON_Data( $config, 'default' ) );

		/*
		 * Backward compatibility for extenders returning a WP_Theme_JSON_Data
		 * compatible class that is not a WP_Theme_JSON_Data object.
		 */
		if ( $theme_json instanceof WP_Theme_JSON_Data ) {
			static::$core = $theme_json->get_theme_json();
		} else {
			$config       = $theme_json->get_data();
			static::$core = new WP_Theme_JSON( $config, 'default' );
		}

		return static::$core;
	}

	/**
	 * Checks whether the registered blocks were already processed for this origin.
	 *
	 * @since 6.1.0
	 *
	 * @param string $origin Data source for which to cache the blocks.
	 *                       Valid values are 'core', 'blocks', 'theme', and 'user'.
	 * @return bool True on success, false otherwise.
	 */
	protected static function has_same_registered_blocks( $origin ) {
		// Bail out if the origin is invalid.
		if ( ! isset( static::$blocks_cache[ $origin ] ) ) {
			return false;
		}

		$registry = WP_Block_Type_Registry::get_instance();
		$blocks   = $registry->get_all_registered();

		// Is there metadata for all currently registered blocks?
		$block_diff = array_diff_key( $blocks, static::$blocks_cache[ $origin ] );
		if ( empty( $block_diff ) ) {
			return true;
		}

		foreach ( $blocks as $block_name => $block_type ) {
			static::$blocks_cache[ $origin ][ $block_name ] = true;
		}

		return false;
	}

	/**
	 * Returns the theme's data.
	 *
	 * Data from theme.json will be backfilled from existing
	 * theme supports, if any. Note that if the same data
	 * is present in theme.json and in theme supports,
	 * the theme.json takes precedence.
	 *
	 * @since 5.8.0
	 * @since 5.9.0 Theme supports have been inlined and the `$theme_support_data` argument removed.
	 * @since 6.0.0 Added an `$options` parameter to allow the theme data to be returned without theme supports.
	 * @since 6.6.0 Add support for 'default-font-sizes' and 'default-spacing-sizes' theme supports.
	 *              Added registration and merging of block style variations from partial theme.json files and the block styles registry.
	 *
	 * @param array $deprecated Deprecated. Not used.
	 * @param array $options {
	 *     Options arguments.
	 *
	 *     @type bool $with_supports Whether to include theme supports in the data. Default true.
	 * }
	 * @return WP_Theme_JSON Entity that holds theme data.
	 */
	public static function get_theme_data( $deprecated = array(), $options = array() ) {
		if ( ! empty( $deprecated ) ) {
			_deprecated_argument( __METHOD__, '5.9.0' );
		}

		$options = wp_parse_args( $options, array( 'with_supports' => true ) );

		if ( null === static::$theme || ! static::has_same_registered_blocks( 'theme' ) ) {
			$wp_theme        = wp_get_theme();
			$theme_json_file = $wp_theme->get_file_path( 'theme.json' );
			if ( is_readable( $theme_json_file ) ) {
				$theme_json_data = static::read_json_file( $theme_json_file );
				$theme_json_data = static::translate( $theme_json_data, $wp_theme->get( 'TextDomain' ) );
			} else {
				$theme_json_data = array( 'version' => WP_Theme_JSON::LATEST_SCHEMA );
			}

			/*
			 * Register variations defined by theme partials (theme.json files in the styles directory).
			 * This is required so the variations pass sanitization of theme.json data.
			 */
			$variations = static::get_style_variations( 'block' );
			wp_register_block_style_variations_from_theme_json_partials( $variations );

			/*
			 * Source variations from the block registry and block style variation files. Then, merge them into the existing theme.json data.
			 *
			 * In case the same style properties are defined in several sources, this is how we should resolve the values,
			 * from higher to lower priority:
			 *
			 * - styles.blocks.blockType.variations from theme.json
			 * - styles.variations from theme.json
			 * - variations from block style variation files
			 * - variations from block styles registry
			 *
			 * See test_add_registered_block_styles_to_theme_data and test_unwraps_block_style_variations.
			 *
			 */
			$theme_json_data = static::inject_variations_from_block_style_variation_files( $theme_json_data, $variations );
			$theme_json_data = static::inject_variations_from_block_styles_registry( $theme_json_data );

			/**
			 * Filters the data provided by the theme for global styles and settings.
			 *
			 * @since 6.1.0
			 *
			 * @param WP_Theme_JSON_Data $theme_json Class to access and update the underlying data.
			 */
			$theme_json = apply_filters( 'wp_theme_json_data_theme', new WP_Theme_JSON_Data( $theme_json_data, 'theme' ) );

			/*
			 * Backward compatibility for extenders returning a WP_Theme_JSON_Data
			 * compatible class that is not a WP_Theme_JSON_Data object.
			 */
			if ( $theme_json instanceof WP_Theme_JSON_Data ) {
				static::$theme = $theme_json->get_theme_json();
			} else {
				$config        = $theme_json->get_data();
				static::$theme = new WP_Theme_JSON( $config );
			}

			if ( $wp_theme->parent() ) {
				// Get parent theme.json.
				$parent_theme_json_file = $wp_theme->parent()->get_file_path( 'theme.json' );
				if ( $theme_json_file !== $parent_theme_json_file && is_readable( $parent_theme_json_file ) ) {
					$parent_theme_json_data = static::read_json_file( $parent_theme_json_file );
					$parent_theme_json_data = static::translate( $parent_theme_json_data, $wp_theme->parent()->get( 'TextDomain' ) );
					$parent_theme           = new WP_Theme_JSON( $parent_theme_json_data );

					/*
					 * Merge the child theme.json into the parent theme.json.
					 * The child theme takes precedence over the parent.
					 */
					$parent_theme->merge( static::$theme );
					static::$theme = $parent_theme;
				}
			}
		}

		if ( ! $options['with_supports'] ) {
			return static::$theme;
		}

		/*
		 * We want the presets and settings declared in theme.json
		 * to override the ones declared via theme supports.
		 * So we take theme supports, transform it to theme.json shape
		 * and merge the static::$theme upon that.
		 */
		$theme_support_data = WP_Theme_JSON::get_from_editor_settings( get_classic_theme_supports_block_editor_settings() );
		if ( ! wp_theme_has_theme_json() ) {
			/*
			 * Unlike block themes, classic themes without a theme.json disable
			 * default presets when custom preset theme support is added. This
			 * behavior can be overridden by using the corresponding default
			 * preset theme support.
			 */
			$theme_support_data['settings']['color']['defaultPalette']        =
				! isset( $theme_support_data['settings']['color']['palette'] ) ||
				current_theme_supports( 'default-color-palette' );
			$theme_support_data['settings']['color']['defaultGradients']      =
				! isset( $theme_support_data['settings']['color']['gradients'] ) ||
				current_theme_supports( 'default-gradient-presets' );
			$theme_support_data['settings']['typography']['defaultFontSizes'] =
				! isset( $theme_support_data['settings']['typography']['fontSizes'] ) ||
				current_theme_supports( 'default-font-sizes' );
			$theme_support_data['settings']['spacing']['defaultSpacingSizes'] =
				! isset( $theme_support_data['settings']['spacing']['spacingSizes'] ) ||
				current_theme_supports( 'default-spacing-sizes' );

			/*
			 * Shadow presets are explicitly disabled for classic themes until a
			 * decision is made for whether the default presets should match the
			 * other presets or if they should be disabled by default in classic
			 * themes. See https://github.com/WordPress/gutenberg/issues/59989.
			 */
			$theme_support_data['settings']['shadow']['defaultPresets'] = false;

			// Allow themes to enable link color setting via theme_support.
			if ( current_theme_supports( 'link-color' ) ) {
				$theme_support_data['settings']['color']['link'] = true;
			}

			// Allow themes to enable all border settings via theme_support.
			if ( current_theme_supports( 'border' ) ) {
				$theme_support_data['settings']['border']['color']  = true;
				$theme_support_data['settings']['border']['radius'] = true;
				$theme_support_data['settings']['border']['style']  = true;
				$theme_support_data['settings']['border']['width']  = true;
			}

			// Allow themes to enable appearance tools via theme_support.
			if ( current_theme_supports( 'appearance-tools' ) ) {
				$theme_support_data['settings']['appearanceTools'] = true;
			}
		}
		$with_theme_supports = new WP_Theme_JSON( $theme_support_data );
		$with_theme_supports->merge( static::$theme );
		return $with_theme_supports;
	}

	/**
	 * Gets the styles for blocks from the block.json file.
	 *
	 * @since 6.1.0
	 *
	 * @return WP_Theme_JSON
	 */
	public static function get_block_data() {
		$registry = WP_Block_Type_Registry::get_instance();
		$blocks   = $registry->get_all_registered();

		if ( null !== static::$blocks && static::has_same_registered_blocks( 'blocks' ) ) {
			return static::$blocks;
		}

		$config = array( 'version' => WP_Theme_JSON::LATEST_SCHEMA );
		foreach ( $blocks as $block_name => $block_type ) {
			if ( isset( $block_type->supports['__experimentalStyle'] ) ) {
				$config['styles']['blocks'][ $block_name ] = static::remove_json_comments( $block_type->supports['__experimentalStyle'] );
			}

			if (
				isset( $block_type->supports['spacing']['blockGap']['__experimentalDefault'] ) &&
				! isset( $config['styles']['blocks'][ $block_name ]['spacing']['blockGap'] )
			) {
				/*
				 * Ensure an empty placeholder value exists for the block, if it provides a default blockGap value.
				 * The real blockGap value to be used will be determined when the styles are rendered for output.
				 */
				$config['styles']['blocks'][ $block_name ]['spacing']['blockGap'] = null;
			}
		}

		/**
		 * Filters the data provided by the blocks for global styles & settings.
		 *
		 * @since 6.1.0
		 *
		 * @param WP_Theme_JSON_Data $theme_json Class to access and update the underlying data.
		 */
		$theme_json = apply_filters( 'wp_theme_json_data_blocks', new WP_Theme_JSON_Data( $config, 'blocks' ) );

		/*
		 * Backward compatibility for extenders returning a WP_Theme_JSON_Data
		 * compatible class that is not a WP_Theme_JSON_Data object.
		 */
		if ( $theme_json instanceof WP_Theme_JSON_Data ) {
			static::$blocks = $theme_json->get_theme_json();
		} else {
			$config         = $theme_json->get_data();
			static::$blocks = new WP_Theme_JSON( $config, 'blocks' );
		}

		return static::$blocks;
	}

	/**
	 * When given an array, this will remove any keys with the name `//`.
	 *
	 * @since 6.1.0
	 *
	 * @param array $input_array The array to filter.
	 * @return array The filtered array.
	 */
	private static function remove_json_comments( $input_array ) {
		unset( $input_array['//'] );
		foreach ( $input_array as $k => $v ) {
			if ( is_array( $v ) ) {
				$input_array[ $k ] = static::remove_json_comments( $v );
			}
		}

		return $input_array;
	}

	/**
	 * Returns the custom post type that contains the user's origin config
	 * for the active theme or an empty array if none are found.
	 *
	 * This can also create and return a new draft custom post type.
	 *
	 * @since 5.9.0
	 *
	 * @param WP_Theme $theme              The theme object. If empty, it
	 *                                     defaults to the active theme.
	 * @param bool     $create_post        Optional. Whether a new custom post
	 *                                     type should be created if none are
	 *                                     found. Default false.
	 * @param array    $post_status_filter Optional. Filter custom post type by
	 *                                     post status. Default `array( 'publish' )`,
	 *                                     so it only fetches published posts.
	 * @return array Custom Post Type for the user's origin config.
	 */
	public static function get_user_data_from_wp_global_styles( $theme, $create_post = false, $post_status_filter = array( 'publish' ) ) {
		if ( ! $theme instanceof WP_Theme ) {
			$theme = wp_get_theme();
		}

		/*
		 * Bail early if the theme does not support a theme.json.
		 *
		 * Since wp_theme_has_theme_json() only supports the active
		 * theme, the extra condition for whether $theme is the active theme is
		 * present here.
		 */
		if ( $theme->get_stylesheet() === get_stylesheet() && ! wp_theme_has_theme_json() ) {
			return array();
		}

		$user_cpt         = array();
		$post_type_filter = 'wp_global_styles';
		$stylesheet       = $theme->get_stylesheet();
		$args             = array(
			'posts_per_page'         => 1,
			'orderby'                => 'date',
			'order'                  => 'desc',
			'post_type'              => $post_type_filter,
			'post_status'            => $post_status_filter,
			'ignore_sticky_posts'    => true,
			'no_found_rows'          => true,
			'update_post_meta_cache' => false,
			'update_post_term_cache' => false,
			'tax_query'              => array(
				array(
					'taxonomy' => 'wp_theme',
					'field'    => 'name',
					'terms'    => $stylesheet,
				),
			),
		);

		$global_style_query = new WP_Query();
		$recent_posts       = $global_style_query->query( $args );
		if ( count( $recent_posts ) === 1 ) {
			$user_cpt = get_object_vars( $recent_posts[0] );
		} elseif ( $create_post ) {
			$cpt_post_id = wp_insert_post(
				array(
					'post_content' => '{"version": ' . WP_Theme_JSON::LATEST_SCHEMA . ', "isGlobalStylesUserThemeJSON": true }',
					'post_status'  => 'publish',
					'post_title'   => 'Custom Styles', // Do not make string translatable, see https://core.trac.wordpress.org/ticket/54518.
					'post_type'    => $post_type_filter,
					'post_name'    => sprintf( 'wp-global-styles-%s', urlencode( $stylesheet ) ),
					'tax_input'    => array(
						'wp_theme' => array( $stylesheet ),
					),
				),
				true
			);
			if ( ! is_wp_error( $cpt_post_id ) ) {
				$user_cpt = get_object_vars( get_post( $cpt_post_id ) );
			}
		}

		return $user_cpt;
	}

	/**
	 * Returns the user's origin config.
	 *
	 * @since 5.9.0
	 * @since 6.6.0 The 'isGlobalStylesUserThemeJSON' flag is left on the user data.
	 *              Register the block style variations coming from the user data.
	 *
	 * @return WP_Theme_JSON Entity that holds styles for user data.
	 */
	public static function get_user_data() {
		if ( null !== static::$user && static::has_same_registered_blocks( 'user' ) ) {
			return static::$user;
		}

		$config   = array();
		$user_cpt = static::get_user_data_from_wp_global_styles( wp_get_theme() );

		if ( array_key_exists( 'post_content', $user_cpt ) ) {
			$decoded_data = json_decode( $user_cpt['post_content'], true );

			$json_decoding_error = json_last_error();
			if ( JSON_ERROR_NONE !== $json_decoding_error ) {
				wp_trigger_error( __METHOD__, 'Error when decoding a theme.json schema for user data. ' . json_last_error_msg() );
				/**
				 * Filters the data provided by the user for global styles & settings.
				 *
				 * @since 6.1.0
				 *
				 * @param WP_Theme_JSON_Data $theme_json Class to access and update the underlying data.
				 */
				$theme_json = apply_filters( 'wp_theme_json_data_user', new WP_Theme_JSON_Data( $config, 'custom' ) );

				/*
				 * Backward compatibility for extenders returning a WP_Theme_JSON_Data
				 * compatible class that is not a WP_Theme_JSON_Data object.
				 */
				if ( $theme_json instanceof WP_Theme_JSON_Data ) {
					return $theme_json->get_theme_json();
				} else {
					$config = $theme_json->get_data();
					return new WP_Theme_JSON( $config, 'custom' );
				}
			}

			/*
			 * Very important to verify that the flag isGlobalStylesUserThemeJSON is true.
			 * If it's not true then the content was not escaped and is not safe.
			 */
			if (
				is_array( $decoded_data ) &&
				isset( $decoded_data['isGlobalStylesUserThemeJSON'] ) &&
				$decoded_data['isGlobalStylesUserThemeJSON']
			) {
				unset( $decoded_data['isGlobalStylesUserThemeJSON'] );
				$config = $decoded_data;
			}
		}

		/** This filter is documented in wp-includes/class-wp-theme-json-resolver.php */
		$theme_json = apply_filters( 'wp_theme_json_data_user', new WP_Theme_JSON_Data( $config, 'custom' ) );

		/*
		 * Backward compatibility for extenders returning a WP_Theme_JSON_Data
		 * compatible class that is not a WP_Theme_JSON_Data object.
		 */
		if ( $theme_json instanceof WP_Theme_JSON_Data ) {
			static::$user = $theme_json->get_theme_json();
		} else {
			$config       = $theme_json->get_data();
			static::$user = new WP_Theme_JSON( $config, 'custom' );
		}

		return static::$user;
	}

	/**
	 * Returns the data merged from multiple origins.
	 *
	 * There are four sources of data (origins) for a site:
	 *
	 * - default => WordPress
	 * - blocks  => each one of the blocks provides data for itself
	 * - theme   => the active theme
	 * - custom  => data provided by the user
	 *
	 * The custom's has higher priority than the theme's, the theme's higher than blocks',
	 * and block's higher than default's.
	 *
	 * Unlike the getters
	 * {@link https://developer.wordpress.org/reference/classes/wp_theme_json_resolver/get_core_data/ get_core_data},
	 * {@link https://developer.wordpress.org/reference/classes/wp_theme_json_resolver/get_theme_data/ get_theme_data},
	 * and {@link https://developer.wordpress.org/reference/classes/wp_theme_json_resolver/get_user_data/ get_user_data},
	 * this method returns data after it has been merged with the previous origins.
	 * This means that if the same piece of data is declared in different origins
	 * (default, blocks, theme, custom), the last origin overrides the previous.
	 *
	 * For example, if the user has set a background color
	 * for the paragraph block, and the theme has done it as well,
	 * the user preference wins.
	 *
	 * @since 5.8.0
	 * @since 5.9.0 Added user data, removed the `$settings` parameter,
	 *              added the `$origin` parameter.
	 * @since 6.1.0 Added block data and generation of spacingSizes array.
	 * @since 6.2.0 Changed ' $origin' parameter values to 'default', 'blocks', 'theme' or 'custom'.
	 *
	 * @param string $origin Optional. To what level should we merge data: 'default', 'blocks', 'theme' or 'custom'.
	 *                       'custom' is used as default value as well as fallback value if the origin is unknown.
	 * @return WP_Theme_JSON
	 */
	public static function get_merged_data( $origin = 'custom' ) {
		if ( is_array( $origin ) ) {
			_deprecated_argument( __FUNCTION__, '5.9.0' );
		}

		$result = new WP_Theme_JSON();
		$result->merge( static::get_core_data() );
		if ( 'default' === $origin ) {
			return $result;
		}

		$result->merge( static::get_block_data() );
		if ( 'blocks' === $origin ) {
			return $result;
		}

		$result->merge( static::get_theme_data() );
		if ( 'theme' === $origin ) {
			return $result;
		}

		$result->merge( static::get_user_data() );

		return $result;
	}

	/**
	 * Returns the ID of the custom post type
	 * that stores user data.
	 *
	 * @since 5.9.0
	 *
	 * @return integer|null
	 */
	public static function get_user_global_styles_post_id() {
		if ( null !== static::$user_custom_post_type_id ) {
			return static::$user_custom_post_type_id;
		}

		$user_cpt = static::get_user_data_from_wp_global_styles( wp_get_theme(), true );

		if ( array_key_exists( 'ID', $user_cpt ) ) {
			static::$user_custom_post_type_id = $user_cpt['ID'];
		}

		return static::$user_custom_post_type_id;
	}

	/**
	 * Determines whether the active theme has a theme.json file.
	 *
	 * @since 5.8.0
	 * @since 5.9.0 Added a check in the parent theme.
	 * @deprecated 6.2.0 Use wp_theme_has_theme_json() instead.
	 *
	 * @return bool
	 */
	public static function theme_has_support() {
		_deprecated_function( __METHOD__, '6.2.0', 'wp_theme_has_theme_json()' );

		return wp_theme_has_theme_json();
	}

	/**
	 * Builds the path to the given file and checks that it is readable.
	 *
	 * If it isn't, returns an empty string, otherwise returns the whole file path.
	 *
	 * @since 5.8.0
	 * @since 5.9.0 Adapted to work with child themes, added the `$template` argument.
	 *
	 * @param string $file_name Name of the file.
	 * @param bool   $template  Optional. Use template theme directory. Default false.
	 * @return string The whole file path or empty if the file doesn't exist.
	 */
	protected static function get_file_path_from_theme( $file_name, $template = false ) {
		$path      = $template ? get_template_directory() : get_stylesheet_directory();
		$candidate = $path . '/' . $file_name;

		return is_readable( $candidate ) ? $candidate : '';
	}

	/**
	 * Cleans the cached data so it can be recalculated.
	 *
	 * @since 5.8.0
	 * @since 5.9.0 Added the `$user`, `$user_custom_post_type_id`,
	 *              and `$i18n_schema` variables to reset.
	 * @since 6.1.0 Added the `$blocks` and `$blocks_cache` variables
	 *              to reset.
	 */
	public static function clean_cached_data() {
		static::$core                     = null;
		static::$blocks                   = null;
		static::$blocks_cache             = array(
			'core'   => array(),
			'blocks' => array(),
			'theme'  => array(),
			'user'   => array(),
		);
		static::$theme                    = null;
		static::$user                     = null;
		static::$user_custom_post_type_id = null;
		static::$i18n_schema              = null;
	}

	/**
	 * Returns an array of all nested JSON files within a given directory.
	 *
	 * @since 6.2.0
	 *
	 * @param string $dir The directory to recursively iterate and list files of.
	 * @return array The merged array.
	 */
	private static function recursively_iterate_json( $dir ) {
		$nested_files      = new RecursiveIteratorIterator( new RecursiveDirectoryIterator( $dir ) );
		$nested_json_files = iterator_to_array( new RegexIterator( $nested_files, '/^.+\.json$/i', RecursiveRegexIterator::GET_MATCH ) );
		return $nested_json_files;
	}

	/**
	 * Determines if a supplied style variation matches the provided scope.
	 *
	 * For backwards compatibility, if a variation does not define any scope
	 * related property, e.g. `blockTypes`, it is assumed to be a theme style
	 * variation.
	 *
	 * @since 6.6.0
	 *
	 * @param array  $variation Theme.json shaped style variation object.
	 * @param string $scope     Scope to check e.g. theme, block etc.
	 * @return boolean
	 */
	private static function style_variation_has_scope( $variation, $scope ) {
		if ( 'block' === $scope ) {
			return isset( $variation['blockTypes'] );
		}

		if ( 'theme' === $scope ) {
			return ! isset( $variation['blockTypes'] );
		}

		return false;
	}

	/**
	 * Returns the style variations defined by the theme.
	 *
	 * @since 6.0.0
	 * @since 6.2.0 Returns parent theme variations if theme is a child.
	 * @since 6.6.0 Added configurable scope parameter to allow filtering
	 *              theme.json partial files by the scope to which they
	 *              can be applied e.g. theme vs block etc.
	 *              Added basic caching for read theme.json partial files.
	 *
	 * @param string $scope The scope or type of style variation to retrieve e.g. theme, block etc.
	 * @return array
	 */
	public static function get_style_variations( $scope = 'theme' ) {
		$variation_files    = array();
		$variations         = array();
		$base_directory     = get_stylesheet_directory() . '/styles';
		$template_directory = get_template_directory() . '/styles';
		if ( is_dir( $base_directory ) ) {
			$variation_files = static::recursively_iterate_json( $base_directory );
		}
		if ( is_dir( $template_directory ) && $template_directory !== $base_directory ) {
			$variation_files_parent = static::recursively_iterate_json( $template_directory );
			// If the child and parent variation file basename are the same, only include the child theme's.
			foreach ( $variation_files_parent as $parent_path => $parent ) {
				foreach ( $variation_files as $child_path => $child ) {
					if ( basename( $parent_path ) === basename( $child_path ) ) {
						unset( $variation_files_parent[ $parent_path ] );
					}
				}
			}
			$variation_files = array_merge( $variation_files, $variation_files_parent );
		}
		ksort( $variation_files );
		foreach ( $variation_files as $path => $file ) {
			$decoded_file = self::read_json_file( $path );
			if ( is_array( $decoded_file ) && static::style_variation_has_scope( $decoded_file, $scope ) ) {
				$translated = static::translate( $decoded_file, wp_get_theme()->get( 'TextDomain' ) );
				$variation  = ( new WP_Theme_JSON( $translated ) )->get_raw_data();
				if ( empty( $variation['title'] ) ) {
					$variation['title'] = basename( $path, '.json' );
				}
				$variations[] = $variation;
			}
		}
		return $variations;
	}

	/**
	 * Resolves relative paths in theme.json styles to theme absolute paths
	 * and returns them in an array that can be embedded
	 * as the value of `_link` object in REST API responses.
	 *
	 * @since 6.6.0
	 * @since 6.7.0 Resolve relative paths in block styles.
	 *
	 * @param WP_Theme_JSON $theme_json A theme json instance.
	 * @return array An array of resolved paths.
	 */
	public static function get_resolved_theme_uris( $theme_json ) {
		$resolved_theme_uris = array();

		if ( ! $theme_json instanceof WP_Theme_JSON ) {
			return $resolved_theme_uris;
		}

		$theme_json_data = $theme_json->get_raw_data();
		/*
		 * The same file convention when registering web fonts.
		 * See: WP_Font_Face_Resolver::to_theme_file_uri.
		 */
		$placeholder = 'file:./';

		// Top level styles.
		$background_image_url = $theme_json_data['styles']['background']['backgroundImage']['url'] ?? null;
		if (
			isset( $background_image_url ) &&
			is_string( $background_image_url ) &&
			// Skip if the src doesn't start with the placeholder, as there's nothing to replace.
			str_starts_with( $background_image_url, $placeholder )
		) {
			$file_type          = wp_check_filetype( $background_image_url );
			$src_url            = str_replace( $placeholder, '', $background_image_url );
			$resolved_theme_uri = array(
				'name'   => $background_image_url,
				'href'   => sanitize_url( get_theme_file_uri( $src_url ) ),
				'target' => 'styles.background.backgroundImage.url',
			);
			if ( isset( $file_type['type'] ) ) {
				$resolved_theme_uri['type'] = $file_type['type'];
			}
			$resolved_theme_uris[] = $resolved_theme_uri;
		}

		// Block styles.
		if ( ! empty( $theme_json_data['styles']['blocks'] ) ) {
			foreach ( $theme_json_data['styles']['blocks'] as $block_name => $block_styles ) {
				if ( ! isset( $block_styles['background']['backgroundImage']['url'] ) ) {
					continue;
				}
				$background_image_url = $block_styles['background']['backgroundImage']['url'];
				if (
					is_string( $background_image_url ) &&
					// Skip if the src doesn't start with the placeholder, as there's nothing to replace.
					str_starts_with( $background_image_url, $placeholder )
				) {
					$file_type          = wp_check_filetype( $background_image_url );
					$src_url            = str_replace( $placeholder, '', $background_image_url );
					$resolved_theme_uri = array(
						'name'   => $background_image_url,
						'href'   => sanitize_url( get_theme_file_uri( $src_url ) ),
						'target' => "styles.blocks.{$block_name}.background.backgroundImage.url",
					);
					if ( isset( $file_type['type'] ) ) {
						$resolved_theme_uri['type'] = $file_type['type'];
					}
					$resolved_theme_uris[] = $resolved_theme_uri;
				}
			}
		}

		return $resolved_theme_uris;
	}

	/**
	 * Resolves relative paths in theme.json styles to theme absolute paths
	 * and merges them with incoming theme JSON.
	 *
	 * @since 6.6.0
	 *
	 * @param WP_Theme_JSON $theme_json A theme json instance.
	 * @return WP_Theme_JSON Theme merged with resolved paths, if any found.
	 */
	public static function resolve_theme_file_uris( $theme_json ) {
		$resolved_urls = static::get_resolved_theme_uris( $theme_json );
		if ( empty( $resolved_urls ) ) {
			return $theme_json;
		}

		$resolved_theme_json_data = $theme_json->get_raw_data();

		foreach ( $resolved_urls as $resolved_url ) {
			$path = explode( '.', $resolved_url['target'] );
			_wp_array_set( $resolved_theme_json_data, $path, $resolved_url['href'] );
		}

		return new WP_Theme_JSON( $resolved_theme_json_data );
	}

	/**
	 * Adds variations sourced from block style variations files to the supplied theme.json data.
	 *
	 * @since 6.6.0
	 *
	 * @param array $data       Array following the theme.json specification.
	 * @param array $variations Shared block style variations.
	 * @return array Theme json data including shared block style variation definitions.
	 */
	private static function inject_variations_from_block_style_variation_files( $data, $variations ) {
		if ( empty( $variations ) ) {
			return $data;
		}

		foreach ( $variations as $variation ) {
			if ( empty( $variation['styles'] ) || empty( $variation['blockTypes'] ) ) {
				continue;
			}

			$variation_name = $variation['slug'] ?? _wp_to_kebab_case( $variation['title'] );

			foreach ( $variation['blockTypes'] as $block_type ) {
				// First, override partial styles with any top-level styles.
				$top_level_data = $data['styles']['variations'][ $variation_name ] ?? array();
				if ( ! empty( $top_level_data ) ) {
					$variation['styles'] = array_replace_recursive( $variation['styles'], $top_level_data );
				}

				// Then, override styles so far with any block-level styles.
				$block_level_data = $data['styles']['blocks'][ $block_type ]['variations'][ $variation_name ] ?? array();
				if ( ! empty( $block_level_data ) ) {
					$variation['styles'] = array_replace_recursive( $variation['styles'], $block_level_data );
				}

				$path = array( 'styles', 'blocks', $block_type, 'variations', $variation_name );
				_wp_array_set( $data, $path, $variation['styles'] );
			}
		}

		return $data;
	}

	/**
	 * Adds variations sourced from the block styles registry to the supplied theme.json data.
	 *
	 * @since 6.6.0
	 *
	 * @param array $data Array following the theme.json specification.
	 * @return array Theme json data including shared block style variation definitions.
	 */
	private static function inject_variations_from_block_styles_registry( $data ) {
		$registry = WP_Block_Styles_Registry::get_instance();
		$styles   = $registry->get_all_registered();

		foreach ( $styles as $block_type => $variations ) {
			foreach ( $variations as $variation_name => $variation ) {
				if ( empty( $variation['style_data'] ) ) {
					continue;
				}

				// First, override registry styles with any top-level styles.
				$top_level_data = $data['styles']['variations'][ $variation_name ] ?? array();
				if ( ! empty( $top_level_data ) ) {
					$variation['style_data'] = array_replace_recursive( $variation['style_data'], $top_level_data );
				}

				// Then, override styles so far with any block-level styles.
				$block_level_data = $data['styles']['blocks'][ $block_type ]['variations'][ $variation_name ] ?? array();
				if ( ! empty( $block_level_data ) ) {
					$variation['style_data'] = array_replace_recursive( $variation['style_data'], $block_level_data );
				}

				$path = array( 'styles', 'blocks', $block_type, 'variations', $variation_name );
				_wp_array_set( $data, $path, $variation['style_data'] );
			}
		}

		return $data;
	}
}
Cresus casino en ligne Inscription et connexion.2051

Cresus casino en ligne Inscription et connexion.2051

Cresus casino en ligne – Inscription et connexion

▶️ JOUER

Содержимое

Le cresus casino est l’un des casinos en ligne les plus populaires et les plus fiables du marché. Avec son offre de jeux variés et ses conditions de jeu exceptionnelles, il attire de nombreux joueurs à travers le monde. Mais comment s’inscrire et se connecter à ce casino en ligne ? Dans cet article, nous allons vous guider étape par étape pour vous aider à vous lancer dans l’aventure.

Le Cresus Casino est un casino en ligne qui propose une grande variété de jeux, allant des jeux de table aux machines à sous, en passant par les jeux de cartes et les jeux de hasard. Les joueurs peuvent choisir parmi plus de 1 000 jeux différents, ce qui leur offre une grande liberté de choix.

Le Cresus Casino est également connu pour ses conditions de jeu exceptionnelles. Les joueurs peuvent bénéficier de bonus et de promotions régulières, ainsi que de programmes de fidélité qui leur permettent de gagner des points et de les échanger contre des récompenses.

Pour s’inscrire au Cresus Casino, les joueurs doivent d’abord cliquer sur le bouton “Inscription” situé en haut à droite de la page d’accueil. Ils doivent ensuite remplir un formulaire avec leurs informations personnelles, telles que leur nom, prénom, adresse e-mail et mot de passe. Une fois le formulaire rempli, les joueurs peuvent cliquer sur le bouton “Valider” pour valider leur inscription.

Une fois inscrit, les joueurs peuvent se connecter à leur compte en utilisant leur adresse e-mail et leur mot de passe. Ils peuvent ensuite accéder à leur compte et commencer à jouer.

Le Cresus Casino est également disponible en version mobile, ce qui signifie que les joueurs peuvent jouer partout et à tout moment, grâce à l’application mobile du casino.

En résumé, le Cresus Casino est un casino en ligne qui offre une grande variété de jeux, des conditions de jeu exceptionnelles et une application mobile pour jouer partout et à tout moment. Pour s’inscrire et se connecter, les joueurs doivent d’abord remplir un formulaire avec leurs informations personnelles et ensuite valider leur inscription. Une fois inscrit, les joueurs peuvent se connecter à leur compte et commencer à jouer.

Les avantages du Cresus Casino :

  • Plus de 1 000 jeux différents
  • Conditions de jeu exceptionnelles
  • Programme de fidélité
  • Application mobile pour jouer partout et à tout moment

Il est important de noter que le Cresus Casino est un casino en ligne qui est soumis aux lois et aux réglementations en vigueur dans le pays où il est établi. Les joueurs doivent donc vérifier les conditions de jeu et les règles du casino avant de commencer à jouer.

Cresus Casino en Ligne : Inscription et Connexion

Pour commencer, il est important de noter que Cresus Casino est un site de jeu en ligne qui propose une grande variété de jeux de hasard, tels que des jeux de table, des jeux de machine à sous et des jeux de loterie. Le site est disponible en français et accepte les joueurs de nombreux pays, y compris la France.

Inscription au Cresus Casino

Pour vous inscrire au Cresus Casino, vous devez d’abord cliquer sur le bouton “Inscription” situé en haut à droite de la page d’accueil. Vous serez alors redirigé vers une page de formulaire d’inscription, où vous devrez fournir certaines informations personnelles, telles que votre nom, votre prénom, votre adresse e-mail et votre mot de passe.

  • Votre nom et votre prénom
  • Votre adresse e-mail
  • Votre mot de passe
  • Un code de vérification

Une fois que vous avez rempli le formulaire d’inscription, vous devrez cliquer sur le bouton “S’inscrire” pour valider votre inscription. Vous recevrez alors un e-mail de confirmation de votre inscription.

Connexion au Cresus Casino

Pour vous connecter au Cresus Casino, vous devez d’abord cliquer sur le bouton “Connexion” situé en haut à droite de la page d’accueil. Vous serez alors redirigé vers une page de formulaire de connexion, où vous devrez fournir votre adresse e-mail et votre mot de passe.

  • Adresse e-mail
  • Mot de passe
  • Une fois que vous avez rempli le formulaire de connexion, vous devrez cliquer sur le bouton “Se connecter” pour valider votre connexion.

    Il est important de noter que Cresus Casino propose également un service de jeu en ligne gratuit, qui permet aux joueurs de jouer sans avoir à déposer d’argent. Cela peut être utile pour les nouveaux joueurs qui veulent d’abord tester les jeux avant de déposer de l’argent.

    En outre, Cresus Casino a reçu de nombreuses critiques positives de la part des joueurs, qui apprécient la variété des jeux proposés, la facilité d’utilisation du site et la qualité du service client.

    Cependant, il est important de noter que Cresus Casino n’est pas sans critique. Certains joueurs ont signalé des problèmes de paiement et des difficultés à contacter le service client. Il est donc important de faire preuve de prudence et de vérifier les conditions générales de jeu avant de commencer à jouer.

    En résumé, Cresus Casino est un site de jeu en ligne qui propose une grande variété de jeux de hasard et un service client de qualité. Cependant, il est important de faire preuve de prudence et de vérifier les conditions générales de jeu avant de commencer à jouer.

    Inscription au Cresus Casino en Ligne

    Pour vous inscrire au Cresus Casino en Ligne, vous devez suivre les étapes suivantes :

    Étape 1 : Cliquez sur le bouton “Inscription” situé en haut à droite de la page d’accueil du site web du Cresus Casino en Ligne.

    Étape 2 : Remplissez le formulaire d’inscription avec vos informations personnelles, notamment votre nom, prénom, adresse e-mail et mot de passe.

    Étape 3 : Vérifiez que vous avez lu et acceptez les conditions générales de service du Cresus Casino en Ligne.

    Création de votre compte Cresus Casino

    Une fois que vous avez rempli le formulaire d’inscription, vous pouvez créer votre compte Cresus Casino en ligne. Vous pouvez alors accéder à vos jeux préférés et profiter de nos offres spéciales.

    Il est important de noter que le Cresus Casino en Ligne est réservé aux personnes âgées de 18 ans et plus. Nous nous réservons le droit de refuser l’accès à notre site web à tout utilisateur qui ne respecte pas nos conditions générales de service.

    En cas de problème ou de difficulté pour vous inscrire, n’hésitez pas à nous contacter. Nous sommes à votre disposition pour vous aider.

    Le Cresus Casino en Ligne est également disponible en version VIP, qui offre des avantages exclusifs et des récompenses spéciales à nos joueurs les plus fidèles. Pour en savoir plus sur notre offre VIP, cliquez ici.

    Enfin, nous vous rappelons que le Cresus Casino en Ligne est un site web de jeu en ligne et que les jeux de hasard peuvent être dangereux pour votre santé financière. Nous vous recommandons de jouer responsablement et de ne pas dépenser plus que vous ne pouvez vous permettre de perdre.

    Si vous avez des questions ou des préoccupations concernant notre site web ou nos services, n’hésitez pas à nous contacter. Nous sommes à votre disposition pour vous aider.

    Connexion au Cresus Casino en Ligne

    Pour vous connecter au Cresus Casino en Ligne, suivez les étapes suivantes :

    1. Ouvrez le site web du Cresus Casino en Ligne et cliquez sur le bouton “Se connecter” situé en haut à droite de la page.

    2. Entrez votre adresse e-mail et votre mot de passe dans les champs respectifs. Si vous avez oublié votre mot de passe, vous pouvez le réinitialiser en cliquant sur le lien “Mot de passe oublié”.

    3. Vérifiez que les informations que vous avez saisies sont correctes, puis cliquez sur le bouton “Se connecter” pour vous connecter à votre compte.

    Connexion avec votre compte Cresus Casino

    Si vous avez déjà un compte Cresus Casino, vous pouvez vous connecter en utilisant vos informations de compte. Pour cela, suivez les étapes suivantes :

    1. Ouvrez le site web du Cresus Casino en Ligne et cliquez sur le bouton “Se connecter” situé en haut à droite de la page.

    2. Entrez votre adresse e-mail et votre mot de passe dans les champs respectifs.

    3. Vérifiez que les informations que vous avez saisies sont correctes, puis cliquez sur le bouton “Se connecter” pour vous connecter à votre compte.

    Connexion avec votre compte Cresus Casino VIP

    Si vous êtes un joueur VIP du Cresus Casino, vous pouvez vous connecter en utilisant vos informations de compte VIP. Pour cela, suivez les étapes suivantes :

    1. Ouvrez le site web du Cresus Casino en Ligne et cliquez sur le bouton “Se connecter” situé en haut à droite de la page.

    2. Entrez votre adresse e-mail et votre mot de passe dans les champs respectifs.

    3. Vérifiez que les informations que vous avez saisies sont correctes, puis cliquez sur le bouton “Se connecter” pour vous connecter à votre compte VIP.

    Enfin, si vous êtes nouveau sur le site web du Cresus Casino en Ligne, vous pouvez vous inscrire en cliquant sur le bouton “S’inscrire” situé en haut à droite de la page. Vous pourrez ainsi créer un compte et commencer à jouer.

    Il est important de noter que le Cresus Casino en Ligne est un site web de jeu en ligne qui offre des jeux de hasard, y compris des jeux de casino, des jeux de loterie et des jeux de poker. Les jeux de hasard peuvent causer des pertes financières importantes. Il est donc important de jouer responsable et de ne pas dépenser plus que vous ne pouvez vous permettre de perdre.

    Le Cresus Casino en Ligne est également connu pour son offre de jeu gratuit, qui vous permet de jouer sans avoir à déposer d’argent. Cela peut être un excellent moyen de découvrir les jeux du site web et de vous familiariser avec les règles du jeu avant de jouer avec de l’argent réel.

    En résumé, pour vous connecter au Cresus Casino en Ligne, vous devez avoir un compte et un mot de passe. Vous pouvez créer un compte en cliquant sur le bouton “S’inscrire” situé en haut à droite de la page. Une fois que vous avez un compte, vous pouvez vous connecter en utilisant vos informations de compte.

    Il est important de noter que le Cresus Casino en Ligne est un site web de jeu en ligne qui offre des jeux de hasard, y compris des jeux de casino, des jeux de loterie et des jeux de poker. Les jeux de hasard peuvent causer des pertes financières importantes. Il est donc important de jouer responsable et de ne pas dépenser plus que vous ne pouvez vous permettre de perdre.

    Les Conditions Générales du Cresus Casino en Ligne

    Le Cresus Casino en ligne est un site de jeu en ligne qui offre une expérience de jeu unique et sécurisée à ses joueurs. Pour garantir une expérience de jeu de haute qualité, nous avons établi certaines conditions générales qui régissent l’utilisation de notre site.

    En créant un compte et en utilisant notre site, vous acceptez de manière expresse et sans réserve les conditions générales suivantes :

    Article 1 : Objet et champ d’application

    Article 2 : Définitions

    • Cresus Casino en ligne

    • Joueurs

    • Services

    Article 3 : Inscrivez-vous

    Article 4 : Confidentialité

    Article 5 : Responsabilité

    Article 6 : Modification des conditions générales

    Article 7 : Loi applicable

    Article 8 : Litiges

    Les présentes conditions générales ont pour objet de définir les termes et conditions de l’utilisation du site Cresus Casino en ligne. Les termes suivants ont la signification suivante : Le site de jeu en ligne proposé par Cresus Casino. Tous les utilisateurs du site Cresus Casino en ligne. Tous les services proposés par Cresus Casino en ligne, y compris les jeux, les promotions et les offres spéciales. En créant un compte, vous acceptez de manière expresse et sans réserve les conditions générales du Cresus Casino en ligne. Cresus Casino en ligne s’engage à protéger la confidentialité de vos informations personnelles et à ne pas les divulguer à des tiers. Cresus Casino en ligne n’est pas responsable des pertes ou des dommages causés par l’utilisation de ses services. Cresus Casino en ligne se réserve le droit de modifier ou de mettre à jour ses conditions générales à tout moment. Les présentes conditions générales sont régies et interprétées en vertu des lois françaises. Tout litige sera soumis aux tribunaux français.

    En utilisant nos services, vous acceptez de manière expresse et sans réserve les conditions générales du Cresus Casino en ligne. Si vous n’acceptez pas ces conditions, vous ne pouvez pas utiliser nos services.

    Cresus Casino en ligne se réserve le droit de modifier ou de mettre à jour ces conditions générales à tout moment. Il est donc important de vérifier régulièrement ces conditions pour vous assurer que vous êtes au courant des modifications apportées.

    En créant un compte et en utilisant notre site, vous déclarez être âgé de 18 ans ou plus et accepter les conditions générales du Cresus Casino en ligne.

    Cresus Casino en ligne est un site de jeu en ligne qui offre une expérience de jeu unique et sécurisée à ses joueurs. Nous sommes convaincus que vous apprécierez notre site et que vous aurez une expérience de jeu exceptionnelle.

    FAQ – Fréquentes Questions du Cresus Casino en Ligne

    Les questions les plus fréquentes sur le Cresus Casino en Ligne sont regroupées ci-dessous. Si vous avez d’autres questions, n’hésitez pas à nous contacter.

    Création du Compte

    Comment créer un compte au Cresus Casino en Ligne ?

    Pour créer un compte, cliquez sur le bouton “Inscription” en haut à droite de la page d’accueil, puis remplissez le formulaire avec vos informations personnelles. Vérifiez que vous avez bien rempli tous les champs obligatoires et que votre adresse e-mail est correcte.

    Comment réinitialiser mon mot de passe ?

    Pour réinitialiser votre mot de passe, cliquez sur le lien “Mot de passe oublié” sur la page de connexion, puis suivez les instructions pour réinitialiser votre mot de passe.

    Jeu et Gains

    Quels sont les jeux proposés par le Cresus Casino en Ligne ?

    Le Cresus Casino en Ligne propose une large gamme de jeux de casino, y compris des jeux de table, des machines à sous et des jeux de loterie. Vous pouvez trouver la liste complète des jeux sur notre page de jeux.

    Comment fonctionnent les gains ?

    Les gains sont attribués automatiquement à votre compte après chaque tour de jeu. Vous pouvez vérifier vos gains dans votre compte.

    Mon Compte

    Comment accéder à mon compte ?

    Pour accéder à votre compte, connectez-vous en utilisant votre adresse e-mail et votre mot de passe.

    Comment modifier mes informations de compte ?

    Pour modifier vos informations de compte, connectez-vous à votre compte, puis cliquez sur le bouton “Mon compte” et suivez les instructions pour modifier vos informations.

    Comment retirer mes gains ?

    Pour retirer vos gains, connectez-vous à votre compte, puis cliquez sur le bouton “Retrait” et suivez les instructions pour retirer vos gains.

    Check Also

    – Официальный сайт Pinco Casino.1586

    Пинко Казино – Официальный сайт Pinco Casino ▶️ ИГРАТЬ Содержимое Преимущества игры на официальном сайте …