/** * 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 ); } } The latest nv casino Jamul Gambling establishment are a separate put run by the Jamul Indian Town - Bun Apeti - Burgers and more

The latest nv casino Jamul Gambling establishment are a separate put run by the Jamul Indian Town

This Native American group works a great gaming and activities heart. It’s located on their six-acre parcel in Jamul, California.

The latest gambling enterprise was once called the Movie industry Gambling establishment Jamul-North park. Now, Mary Cheeks is the president and you will general movie director. To the, you’ll find 1,700 slot machines and 40 dining table games. The fresh new gambling enterprise is focused on 20 kilometers eastern out-of downtown San diego.

Very early Agreements and you can Demands – nv casino

From inside the 1999, brand new Jamul Indian Town, a small grouping of Kumeyaay Indians, had a notion. It planned to create yet another hotel and you will gambling establishment on the brief, 6-acre reservation. Initially, its plan inside including a whole lot more belongings. But not, local people highly disagreed with this specific idea.

By the opposition, the new tribe changed the agreements. It chose to generate this new casino just on their established six acres. Despite it change, of numerous townspeople remained resistant to the opportunity. But the group went to come with another type of pioneering ceremony when you look at the .

Financing and you may Society Inquiries

nv casino

A company away from Minnesota, Ponds Activity, helped pay money for this new $200 billion venture. The latest local casino are planned to realize California’s rules getting Local Western gambling. Supporters of your gambling establishment told you it could provide more funds to the state and the group. Nonetheless they said it could manage 2,000 the new services for everybody in the community.

not, many people regarding the area got fears. These were concerned with how gambling establishment create apply to local cops and you may flame qualities. They also concerned about water likewise have. A huge question are one to a tall, 15-story strengthening do change the town’s browse permanently. The largest care was about tourist. The casino’s area created that every vehicles will have to drive from the middle out-of city for the Road 94.

In the , a conference was held to share with you the fresh new casino’s ecological perception. Numerous Jamul owners involved the fresh new meeting. Just about everyone around talked from the gambling enterprise opportunity.

Discussing your panels with Residents

Inside the , the nv casino brand new gambling establishment organizers encountered the townspeople once more. They displayed pictures of your own organized half dozen-tale casino and you will twelve-facts resorts. People common the view, for and you will up against the project. Every negative comments remained concerning the more visitors for the California Condition Route 94. That it road will get a slim a couple-way road correct where gambling establishment are prepared.

nv casino

Inside the , there are certain disagreements for the tribal home. New tribe had to deal with individuals who was basically way of living to the the newest home but was contrary to the gambling enterprise. It triggered significantly more dialogue in the community. Around this go out, the fresh new tribal leaders as well as felt like they will perhaps not discuss to the state about the gambling enterprise. Rather, it prepared a gambling establishment with only “Group II” online game, that don’t are slot machines. This type of casinos don’t need unique agreements towards Condition out of California.

Roadway Supply and you will The latest People

In , the fresh new tribe got an argument which have Caltrans, brand new state’s transportation company. Brand new group considered they’d the legal right to play with their homes as they wished. Caltrans, however, are worried about societal protection. They will maybe not accept it permits for good stoplight to the County Station 94 rather than a great deal more environment knowledge. The fresh new group considered Caltrans was interfering. A great tribal leader told me your organization resource the fresh new gambling establishment necessary to understand bettors could easily get on the local casino in advance of it would offer more money.

From the , brand new tribe and you can Caltrans hit a binding agreement. The new tribe provided to do a whole lot more ecological training into opportunity. not, the organization investment the newest casino, Lakes Entertainment, chose to treat their money on venture. Nevertheless they told you new casino may possibly not be completed until 2014.

nv casino

When you look at the , Ponds Entertainment finished its contract into the Jamul Indian Tribe. Following this, this new group established the latest arrangements. It desired to focus on town to style a smaller sized gambling establishment. The fresh new bundle create address some of the questions Jamul people had. In search of a different sort of lover was a bit tricky as the group nonetheless owed Lakes Entertainment money. Along with, brand new group merely had permission to have Group II online game, not the class III video game that include slots.

Finally, Penn National Betting turned into the lover. They aided fund, build, and you can would the newest $eight hundred mil Movie industry Local casino. This new Movie industry Gambling establishment Jamul � San diego theoretically started with the . It has got a good around three-facts building with about 2 hundred,000 square feet for gaming and recreation. There are over 1,700 slots, 40 alive dining table game, and many eating and you may taverns. It also enjoys a belowground parking garage with about 1,800 spaces.

From inside the ing, and that owns of a lot Hollywood casinos, paid the treatment of the Jamul Local casino. Today, brand new Jamul Indian Town Creativity Corp. works this new gambling establishment by themselves.

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