/** * Starter Content Compatibility. * * @since 4.0.0 * @package Astra */ /** * Class Astre_Starter_Content */ class Astra_Starter_Content { public const HOME_SLUG = 'home'; public const ABOUT_SLUG = '#about'; public const SERVICES_SLUG = '#services'; public const REVIEWS_SLUG = '#reviews'; public const WHY_US_SLUG = '#whyus'; public const CONTACT_SLUG = '#contact'; /** * Constructor */ public function __construct() { $is_fresh_site = get_option( 'fresh_site' ); if ( ! $is_fresh_site ) { return; } // Adding post meta and inserting post. add_action( 'wp_insert_post', array( $this, 'register_listener', ), 3, 99 ); // Save astra settings into database. add_action( 'customize_save_after', array( $this, 'save_astra_settings', ), 10, 3 ); if ( ! is_customize_preview() ) { return; } // preview customizer values. add_filter( 'default_post_metadata', array( $this, 'starter_meta' ), 99, 3 ); add_filter( 'astra_theme_defaults', array( $this, 'theme_defaults' ) ); add_filter( 'astra_global_color_palette', array( $this, 'theme_color_palettes_defaults' ) ); } /** * Load default starter meta. * * @since 4.0.2 * @param mixed $value Value. * @param int $post_id Post id. * @param string $meta_key Meta key. * * @return string Meta value. */ public function starter_meta( $value, $post_id, $meta_key ) { if ( get_post_type( $post_id ) !== 'page' ) { return $value; } if ( 'site-content-layout' === $meta_key ) { return 'plain-container'; } if ( 'theme-transparent-header-meta' === $meta_key ) { return 'enabled'; } if ( 'site-sidebar-layout' === $meta_key ) { return 'no-sidebar'; } if ( 'site-post-title' === $meta_key ) { return 'disabled'; } return $value; } /** * Register listener to insert post. * * @since 4.0.0 * @param int $post_ID Post Id. * @param \WP_Post $post Post object. * @param bool $update Is update. */ public function register_listener( $post_ID, $post, $update ) { if ( $update ) { return; } $custom_draft_post_name = get_post_meta( $post_ID, '_customize_draft_post_name', true ); $is_from_starter_content = ! empty( $custom_draft_post_name ); if ( ! $is_from_starter_content ) { return; } if ( 'page' === $post->post_type ) { update_post_meta( $post_ID, 'site-content-layout', 'plain-container' ); update_post_meta( $post_ID, 'theme-transparent-header-meta', 'enabled' ); update_post_meta( $post_ID, 'site-sidebar-layout', 'no-sidebar' ); update_post_meta( $post_ID, 'site-post-title', 'disabled' ); } } /** * Get customizer json * * @since 4.0.0 * @return mixed value. */ public function get_customizer_json() { try { $request = wp_remote_get( ASTRA_THEME_URI . 'inc/compatibility/starter-content/astra-settings-export.json' ); } catch ( Exception $ex ) { $request = null; } if ( is_wp_error( $request ) ) { return false; // Bail early. } // @codingStandardsIgnoreStart /** * @psalm-suppress PossiblyNullReference * @psalm-suppress UndefinedMethod * @psalm-suppress PossiblyNullArrayAccess * @psalm-suppress PossiblyNullArgument * @psalm-suppress InvalidScalarArgument */ return json_decode( $request['body'], 1 ); // @codingStandardsIgnoreEnd } /** * Save Astra customizer settings into database. * * @since 4.0.0 */ public function save_astra_settings() { $settings = self::get_customizer_json(); // Delete existing dynamic CSS cache. delete_option( 'astra-settings' ); if ( ! empty( $settings['customizer-settings'] ) ) { foreach ( $settings['customizer-settings'] as $option => $value ) { update_option( $option, $value ); } } } /** * Load default astra settings. * * @since 4.0.0 * @param mixed $defaults defaults. * @return mixed value. */ public function theme_defaults( $defaults ) { $json = ''; $settings = self::get_customizer_json(); if ( ! empty( $settings['customizer-settings'] ) ) { $json = $settings['customizer-settings']['astra-settings']; } return $json ? $json : $defaults; } /** * Load default color palettes. * * @since 4.0.0 * @param mixed $defaults defaults. * @return mixed value. */ public function theme_color_palettes_defaults( $defaults ) { $json = ''; $settings = self::get_customizer_json(); if ( ! empty( $settings['customizer-settings'] ) ) { $json = $settings['customizer-settings']['astra-color-palettes']; } return $json ? $json : $defaults; } /** * Return starter content definition. * * @return mixed|void * @since 4.0.0 */ public function get() { $nav_items_header = array( 'home' => array( 'type' => 'post_type', 'object' => 'page', 'object_id' => '{{' . self::HOME_SLUG . '}}', ), 'about' => array( 'title' => __( 'Services', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::SERVICES_SLUG . '}}', ), 'services' => array( 'title' => __( 'About', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::ABOUT_SLUG . '}}', ), 'reviews' => array( 'title' => __( 'Reviews', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::REVIEWS_SLUG . '}}', ), 'faq' => array( 'title' => __( 'Why Us', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::WHY_US_SLUG . '}}', ), 'contact' => array( 'title' => __( 'Contact', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::CONTACT_SLUG . '}}', ), ); $content = array( 'attachments' => array( 'logo' => array( 'post_title' => _x( 'Logo', 'Theme starter content', 'astra' ), 'file' => 'inc/assets/images/starter-content/logo.png', ), ), 'theme_mods' => array( 'custom_logo' => '{{logo}}', ), 'nav_menus' => array( 'primary' => array( 'name' => esc_html__( 'Primary', 'astra' ), 'items' => $nav_items_header, ), 'mobile_menu' => array( 'name' => esc_html__( 'Primary', 'astra' ), 'items' => $nav_items_header, ), ), 'options' => array( 'page_on_front' => '{{' . self::HOME_SLUG . '}}', 'show_on_front' => 'page', ), 'posts' => array( self::HOME_SLUG => require ASTRA_THEME_DIR . 'inc/compatibility/starter-content/home.php', // PHPCS:ignore WPThemeReview.CoreFunctionality.FileInclude.FileIncludeFound ), ); return apply_filters( 'astra_starter_content', $content ); } } Bingo used to be a common fixture inside the Vegas gambling enterprises - Bun Apeti - Burgers and more

Bingo used to be a common fixture inside the Vegas gambling enterprises

Circus Circus executives say the brand new timing for a revival is sensible

The new gates officially unlock to have a keen inaugural night of old-school bingo for the Wednesday, , during the Circus Circus. Using this the latest bingo room, Circus Circus gets the sole local casino giving bingo for the Strip. (Liv Paggiarino/Las vegas Review-Journal)

Shana Gerety, general manager out of Circus Circus gambling establishment-lodge, speaks before a keen inaugural nights Roulettino casinoside old-school bingo into the Wednesday, . With this specific the fresh new bingo room, Circus Circus gets the only local casino to give bingo to the Remove. (Liv Paggiarino/Las vegas Comment-Journal)

The very last tall possessions giving bingo into the Strip, the fresh new Riviera, closed-in 2015

A great used bingo cards sits on the rubbish during an enthusiastic inaugural nights old school bingo on the Wednesday, , during the Circus Circus. Using this the latest bingo room, Circus Circus gets the only real gambling establishment provide bingo to your Remove. (Liv Paggiarino/Las vegas Review-Journal)

Bingo markers attend a vending server throughout an enthusiastic inaugural nights of old school bingo towards Wednesday, , at the Circus Circus. With this the fresh bingo area, Circus Circus will get the only local casino to give bingo for the Strip. (Liv Paggiarino/Vegas Remark-Journal)

Bingo professionals work with looking for quantity are called while in the an enthusiastic inaugural night of old school bingo on the Wednesday, , during the Circus Circus. Using this the brand new bingo area, Circus Circus gets the only local casino to give bingo to your Strip. (Liv Paggiarino/Las vegas Opinion-Journal)

Even more Tales Wynn money off, Vegas downturn partially to blame From-Remove gambling enterprise to obtain new name, in the process of home improvements Former governor, regulator located Ok to have certification having Remove local casino-hotel leaders opportunities Henderson gambling enterprise-lodge to acquire inform because the organization listings number show / Vegas Feedback-Record Updated

Lucky’s Bingo Area is part of Circus Circus’ larger effort in order to slim to your the really worth-based identity, giving folks lower-cost products since costs rise someplace else to your Remove. Along with sensible playing, the newest bingo hallway will ability low-rates as well as products, along with $2 scorching dogs, popcorn and you can pretzels.

�We have been seeking to wade classic. The audience is looking to go old school. We’re seeking give Vegas returning to Vegas,� Shana Gerety, standard manager from Circus Circus, told you during a media examine knowledge Wednesday evening. �The audience is really and truly just looking to restore fun.�

The brand new 255-seat Circus Circus bingo hallway is positioned on the second-floor, simply at night entry on the Adventuredome motif park.

Lucky’s Bingo Place try open Thursday as a consequence of Weekend for 5 classes every day, to the first training doing at 1 p.meters. Each tutorial often element 10 papers-just games, plus traditional bingo cycles, a bonus games and you may a good coverall. Daubers are offered for obtain good vending host for the bingo hall, starting in cost regarding $2 so you’re able to $four.

A complete example package will surely cost $30, having add-on the notes readily available, and all prizes would be paid-in cash, away from $50 winnings so you’re able to best honours of $one,five hundred.

Since group grapple which have rising prices having entertainment, eating and you will dining table minimums, gambling enterprises across the area was in fact researching ways to offer lower-costs experiences you to definitely nevertheless become exclusively �Vegas.�

Specific local casino operators is feeling the newest pushback out of travelers more than continuously climbing will set you back, off resorts charges to help you food cost to help you playing restrictions. Value-focused functions particularly Circus Circus are leaning into the one minute, pitching by themselves since the possibilities into the much more superior environment somewhere else towards the latest Strip.

Experts recommend choices including bingo, low-stakes desk video game and you may finances-friendly dinner choice can help resorts capture folks who however wanted to help you gamble and stay amused but they are even more choosy on the where it purchase.

�Why not become another thing?� Gerety questioned rhetorically in reaction towards team rationale trailing beginning a classic game in the a neighborhood noted for are to your leading edge. �The audience is in hopes by using some of the something different that we’re providing online, it is going to ignite extra reasons for visitors to already been here to help you Circus Circus.�

/** * Template part for displaying the footer info. * * @link https://codex.wordpress.org/Template_Hierarchy * * @package Astra * @since 1.0.0 */ ?>
Scroll to Top