Current File : /home/bdmcricketindia.in/public_html/wp-includes/class-wp-site.php
<?php
/**
 * Site API: WP_Site class
 *
 * @package WordPress
 * @subpackage Multisite
 * @since 4.5.0
 */

/**
 * Core class used for interacting with a multisite site.
 *
 * This class is used during load to populate the `$current_blog` global and
 * setup the current site.
 *
 * @since 4.5.0
 *
 * @property int    $id
 * @property int    $network_id
 * @property string $blogname
 * @property string $siteurl
 * @property int    $post_count
 * @property string $home
 */
#[AllowDynamicProperties]
final class WP_Site {

	/**
	 * Site ID.
	 *
	 * Named "blog" vs. "site" for legacy reasons.
	 *
	 * A numeric string, for compatibility reasons.
	 *
	 * @since 4.5.0
	 * @var string
	 */
	public $blog_id;

	/**
	 * Domain of the site.
	 *
	 * @since 4.5.0
	 * @var string
	 */
	public $domain = '';

	/**
	 * Path of the site.
	 *
	 * @since 4.5.0
	 * @var string
	 */
	public $path = '';

	/**
	 * The ID of the site's parent network.
	 *
	 * Named "site" vs. "network" for legacy reasons. An individual site's "site" is
	 * its network.
	 *
	 * A numeric string, for compatibility reasons.
	 *
	 * @since 4.5.0
	 * @var string
	 */
	public $site_id = '0';

	/**
	 * The date and time on which the site was created or registered.
	 *
	 * @since 4.5.0
	 * @var string Date in MySQL's datetime format.
	 */
	public $registered = '0000-00-00 00:00:00';

	/**
	 * The date and time on which site settings were last updated.
	 *
	 * @since 4.5.0
	 * @var string Date in MySQL's datetime format.
	 */
	public $last_updated = '0000-00-00 00:00:00';

	/**
	 * Whether the site should be treated as public.
	 *
	 * A numeric string, for compatibility reasons.
	 *
	 * @since 4.5.0
	 * @var string
	 */
	public $public = '1';

	/**
	 * Whether the site should be treated as archived.
	 *
	 * A numeric string, for compatibility reasons.
	 *
	 * @since 4.5.0
	 * @var string
	 */
	public $archived = '0';

	/**
	 * Whether the site should be treated as mature.
	 *
	 * Handling for this does not exist throughout WordPress core, but custom
	 * implementations exist that require the property to be present.
	 *
	 * A numeric string, for compatibility reasons.
	 *
	 * @since 4.5.0
	 * @var string
	 */
	public $mature = '0';

	/**
	 * Whether the site should be treated as spam.
	 *
	 * A numeric string, for compatibility reasons.
	 *
	 * @since 4.5.0
	 * @var string
	 */
	public $spam = '0';

	/**
	 * Whether the site should be treated as deleted.
	 *
	 * A numeric string, for compatibility reasons.
	 *
	 * @since 4.5.0
	 * @var string
	 */
	public $deleted = '0';

	/**
	 * The language pack associated with this site.
	 *
	 * A numeric string, for compatibility reasons.
	 *
	 * @since 4.5.0
	 * @var string
	 */
	public $lang_id = '0';

	/**
	 * Retrieves a site from the database by its ID.
	 *
	 * @since 4.5.0
	 *
	 * @global wpdb $wpdb WordPress database abstraction object.
	 *
	 * @param int $site_id The ID of the site to retrieve.
	 * @return WP_Site|false The site's object if found. False if not.
	 */
	public static function get_instance( $site_id ) {
		global $wpdb;

		$site_id = (int) $site_id;
		if ( ! $site_id ) {
			return false;
		}

		$_site = wp_cache_get( $site_id, 'sites' );

		if ( false === $_site ) {
			$_site = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM {$wpdb->blogs} WHERE blog_id = %d LIMIT 1", $site_id ) );

			if ( empty( $_site ) || is_wp_error( $_site ) ) {
				$_site = -1;
			}

			wp_cache_add( $site_id, $_site, 'sites' );
		}

		if ( is_numeric( $_site ) ) {
			return false;
		}

		return new WP_Site( $_site );
	}

	/**
	 * Creates a new WP_Site object.
	 *
	 * Will populate object properties from the object provided and assign other
	 * default properties based on that information.
	 *
	 * @since 4.5.0
	 *
	 * @param WP_Site|object $site A site object.
	 */
	public function __construct( $site ) {
		foreach ( get_object_vars( $site ) as $key => $value ) {
			$this->$key = $value;
		}
	}

	/**
	 * Converts an object to array.
	 *
	 * @since 4.6.0
	 *
	 * @return array Object as array.
	 */
	public function to_array() {
		return get_object_vars( $this );
	}

	/**
	 * Getter.
	 *
	 * Allows current multisite naming conventions when getting properties.
	 * Allows access to extended site properties.
	 *
	 * @since 4.6.0
	 *
	 * @param string $key Property to get.
	 * @return mixed Value of the property. Null if not available.
	 */
	public function __get( $key ) {
		switch ( $key ) {
			case 'id':
				return (int) $this->blog_id;
			case 'network_id':
				return (int) $this->site_id;
			case 'blogname':
			case 'siteurl':
			case 'post_count':
			case 'home':
			default: // Custom properties added by 'site_details' filter.
				if ( ! did_action( 'ms_loaded' ) ) {
					return null;
				}

				$details = $this->get_details();
				if ( isset( $details->$key ) ) {
					return $details->$key;
				}
		}

		return null;
	}

	/**
	 * Isset-er.
	 *
	 * Allows current multisite naming conventions when checking for properties.
	 * Checks for extended site properties.
	 *
	 * @since 4.6.0
	 *
	 * @param string $key Property to check if set.
	 * @return bool Whether the property is set.
	 */
	public function __isset( $key ) {
		switch ( $key ) {
			case 'id':
			case 'network_id':
				return true;
			case 'blogname':
			case 'siteurl':
			case 'post_count':
			case 'home':
				if ( ! did_action( 'ms_loaded' ) ) {
					return false;
				}
				return true;
			default: // Custom properties added by 'site_details' filter.
				if ( ! did_action( 'ms_loaded' ) ) {
					return false;
				}

				$details = $this->get_details();
				if ( isset( $details->$key ) ) {
					return true;
				}
		}

		return false;
	}

	/**
	 * Setter.
	 *
	 * Allows current multisite naming conventions while setting properties.
	 *
	 * @since 4.6.0
	 *
	 * @param string $key   Property to set.
	 * @param mixed  $value Value to assign to the property.
	 */
	public function __set( $key, $value ) {
		switch ( $key ) {
			case 'id':
				$this->blog_id = (string) $value;
				break;
			case 'network_id':
				$this->site_id = (string) $value;
				break;
			default:
				$this->$key = $value;
		}
	}

	/**
	 * Retrieves the details for this site.
	 *
	 * This method is used internally to lazy-load the extended properties of a site.
	 *
	 * @since 4.6.0
	 *
	 * @see WP_Site::__get()
	 *
	 * @return stdClass A raw site object with all details included.
	 */
	private function get_details() {
		$details = wp_cache_get( $this->blog_id, 'site-details' );

		if ( false === $details ) {

			switch_to_blog( $this->blog_id );
			// Create a raw copy of the object for backward compatibility with the filter below.
			$details = new stdClass();
			foreach ( get_object_vars( $this ) as $key => $value ) {
				$details->$key = $value;
			}
			$details->blogname   = get_option( 'blogname' );
			$details->siteurl    = get_option( 'siteurl' );
			$details->post_count = get_option( 'post_count' );
			$details->home       = get_option( 'home' );
			restore_current_blog();

			wp_cache_set( $this->blog_id, $details, 'site-details' );
		}

		/** This filter is documented in wp-includes/ms-blogs.php */
		$details = apply_filters_deprecated( 'blog_details', array( $details ), '4.7.0', 'site_details' );

		/**
		 * Filters a site's extended properties.
		 *
		 * @since 4.6.0
		 *
		 * @param stdClass $details The site details.
		 */
		$details = apply_filters( 'site_details', $details );

		return $details;
	}
}
Pin Up Casino Azərbaycan.984

Pin Up Casino Azərbaycan.984

Содержимое

Pin Up Casino Azərbaycan

Pin Up Casino Azərbaycan – bu pinap az və pinup casino tərəfindən təqdim olunmuş, Azərbaycanlılar üçün məşhur və müraciətçilərə uyğun qızıl qalılıq casino. Bu platforma, pin up casino tərəfindən hazırlanmış və Azərbaycan dili ilə tətbiq edilmişdir. Pin Up Casino Azərbaycan, müraciətçilərin əhəmiyyətini və onların məlumatlarının təhlili ilə hazırlanmışdır, bu sayədə daha yaxşı və daha müraciətçilərə uyğun xidmətlər təqdim edilir.

Pin Up Casino Azərbaycan, müraciətçilərin ən yaxşı oyunları və bonusları təqdim edir. Casino-da ən yaxşı və populyar oyunlar, kimi slotlar, live casino, table games və daha çox mövcuddur. Pin Up Casino Azərbaycan-da müraciətçilər, pinap az tərəfindən təqdim olunan müraciətçilərə uyğun və ən yaxşı oyunları tapa bilərlər. Casino-da müraciətçilər, pin up casino tərəfindən təqdim olunan bonuslarla daha yaxşı oyun oynayabilir və qazanma şanslarını artırabilir.

Pin Up Casino Azərbaycan, müraciətçilərin məlumatlarının təhlili ilə hazırlanmışdır və bu sayədə daha yaxşı və daha müraciətçilərə uyğun xidmətlər təqdim edilir. Casino-da müraciətçilər, pin up casino tərəfindən hazırlanmış və Azərbaycan dili ilə tətbiq edilmişdir. Pin Up Casino Azərbaycan, müraciətçilərin ən yaxşı oyunları və bonusları təqdim edir, bu sayədə müraciətçilər daha yaxşı və daha müraciətçilərə uyğun xidmətlər təqdim edilir.

Quruluş və Xidmətlər

Pin Up пин ап казино Casino Azərbaycan 2014-ci ilin baharında qurulub. Bu quruluş, pin up casino və pinap az xidmətlərinin Azərbaycan mərkəzindən istifadə edilməsini təmin etmək üçün yaratılıb. Pin Up Casino Azərbaycan, qazanclı və sürətli kreditlər, qazanma şansları və 24 saatlik xidmət müraciətlərini təmin edən ən yaxşı və mürəkkəb qazanma platforması ilə tanınır.

Pin Up Casino Azərbaycan-da istifadəçilər ən yaxşı və sürətli kreditlər təmin edilir. Bu kreditlər, istifadəçilərin qazanma şanslarını artırmaq və daha çox qazanma imkanı verir. Casino-da 24 saatlik xidmət müraciətlər təmin edilir, bu da istifadəçilərin problemlərini həll etmək üçün ən yaxınlardan müraciət edə bilərlər.

Pin Up Casino Azərbaycan-da istifadəçilər ən yaxşı və sürətli kreditlər təmin edilir. Bu kreditlər, istifadəçilərin qazanma şanslarını artırmaq və daha çox qazanma imkanı verir. Casino-da 24 saatlik xidmət müraciətlər təmin edilir, bu da istifadəçilərin problemlərini həll etmək üçün ən yaxınlardan müraciət edə bilərlər.

Pin Up Casino Azərbaycan, istifadəçilərinə ən yaxşı və sürətli kreditlər təmin edir. Bu kreditlər, istifadəçilərin qazanma şanslarını artırmaq və daha çox qazanma imkanı verir. Casino-da 24 saatlik xidmət müraciətlər təmin edilir, bu da istifadəçilərin problemlərini həll etmək üçün ən yaxınlardan müraciət edə bilərlər.

Qeydiyyat və Oyunlar

Qeydiyyat prosesinin qaydaları: Pin Up Casino Azərbaycan-da qeydiyyatdan keçmək çox rahat və sürətli. Sizin üçün bir hesab yaratmaq üçün sitemizdən pinup az və ya pin up giriş səhifələrindən birini izləyin. Qeydiyyat prosesində sizin adınızı, soyadınızı, e-poçt adresinizi və şifrənizi daxil etməlisiniz. E-poçt adresinizi daxil etdikdə, sistem sizinə bir doğrulama e-poçt göndərəcək. Bu e-poçtdan gələn linqdən hesabınızı onaylayıb, qeydiyyat tamamlandıqdan əmin olun.

Oyunların seçimi: Qeydiyyatdan keçdikdən sonra, Pin Up Casino Azərbaycan-da çox çox oyun seçimi var. Sizə əsasən əhəmiyyət verilən oyunlar arasında: slotlar, karaqız oyunları, poker, live casino və daha çox. Slotlar arasında ən populyar olanlar arasında: Pin Up Slot, Pin Up Mega, Pin Up Classic və daha çox. Live casino oyunları da daxil edilmişdir, burada canlı dealerlarla oynayabilecəksiniz.

Oyunların oynanışı: Oyunları oynayabilmək üçün ilk olaraq hesabınızı açın və sonra oyunları seçin. Oyunları seçdikdən sonra, oyununuzdakı qaliblik qanunlarını və oyununuzda oynanması üçün istifadə olunacaq dəyərləri təyin edin. Oyunları oynayarkən, hesabınızı dəyişdirə bilərsiniz və oyununuzda istifadə etmək istədiyiniz dəyərləri daxil edə bilərsiniz.

Check Also

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

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