\" plugin_version.type = \"hidden\" form.appendChild(plugin_version) var wordpress_version = document.createElement(\"input\") wordpress_version.name = \"wordpress_version\" wordpress_version.id = \"wordpress_version\" wordpress_version.value = '$wp_version' wordpress_version.type = \"hidden\" form.appendChild(wordpress_version) } },200); "; } else { echo ''; } } else { echo ''; } } else { echo ""; return; } } } /** * Google analytics . */ function ga_footer() { if ( ! ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) { $banner_discarded_count = get_option( 'sm_beta_banner_discarded_count' ); if ( 1 === $banner_discarded_count || '1' === $banner_discarded_count ) { echo ''; } } } /** * Check if the requirements of the sitemap plugin are met and loads the actual loader * * @package sitemap * @since 4.0 */ function sm_setup() { $fail = false; // Check minimum PHP requirements, which is 5.2 at the moment. if ( version_compare( PHP_VERSION, '5.2', '<' ) ) { add_action( 'admin_notices', 'sm_add_php_version_error' ); $fail = true; } // Check minimum WP requirements, which is 3.3 at the moment. if ( version_compare( $GLOBALS['wp_version'], '3.3', '<' ) ) { add_action( 'admin_notices', 'sm_add_wp_version_error' ); $fail = true; } if ( ! $fail ) { require_once trailingslashit( dirname( __FILE__ ) ) . 'class-googlesitemapgeneratorloader.php'; } } /** * Adds a notice to the admin interface that the WordPress version is too old for the plugin * * @package sitemap * @since 4.0 */ function sm_add_wp_version_error() { /* translators: %s: search term */ echo '

' . esc_html( __( 'Your WordPress version is too old for XML Sitemaps.', 'google-sitemap-generator' ) ) . '
' . esc_html( sprintf( __( 'Unfortunately this release of Google XML Sitemaps requires at least WordPress %4$s. You are using WordPress %2$s, which is out-dated and insecure. Please upgrade or go to active plugins and deactivate the Google XML Sitemaps plugin to hide this message. You can download an older version of this plugin from the plugin website.', 'google-sitemap-generator' ), 'plugins.php?plugin_status=active', esc_html( $GLOBALS['wp_version'] ), 'http://www.arnebrachhold.de/redir/sitemap-home/', '3.3' ) ) . '

'; } /** * Adds a notice to the admin interface that the WordPress version is too old for the plugin * * @package sitemap * @since 4.0 */ function sm_add_php_version_error() { /* translators: %s: search term */ echo '

' . esc_html( __( 'Your PHP version is too old for XML Sitemaps.', 'google-sitemap-generator' ) ) . '
' . esc_html( sprintf( __( 'Unfortunately this release of Google XML Sitemaps requires at least PHP %4$s. You are using PHP %2$s, which is out-dated and insecure. Please ask your web host to update your PHP installation or go to active plugins and deactivate the Google XML Sitemaps plugin to hide this message. You can download an older version of this plugin from the plugin website.', 'google-sitemap-generator' ), 'plugins.php?plugin_status=active', PHP_VERSION, 'http://www.arnebrachhold.de/redir/sitemap-home/', '5.2' ) ) . '

'; } /** * Returns the file used to load the sitemap plugin * * @package sitemap * @since 4.0 * @return string The path and file of the sitemap plugin entry point */ function sm_get_init_file() { return __FILE__; } /** * Register beta user consent function. */ function register_consent() { if ( ! ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) { if ( is_user_logged_in() && current_user_can( 'manage_options' ) ) { if ( isset( $_POST['user_consent_yes'] ) ) { if (isset($_POST['user_consent_yesno_nonce_token']) && check_admin_referer('user_consent_yesno_nonce', 'user_consent_yesno_nonce_token')){ update_option( 'sm_user_consent', 'yes' ); } } if ( isset( $_POST['user_consent_no'] ) ) { if (isset($_POST['user_consent_yesno_nonce_token']) && check_admin_referer('user_consent_yesno_nonce', 'user_consent_yesno_nonce_token')){ update_option( 'sm_user_consent', 'no' ); } } if ( isset( $_GET['action'] ) ) { if ( 'no' === $_GET['action'] ) { if ( $_SERVER['QUERY_STRING'] ) { if( strpos( $_SERVER['QUERY_STRING'], 'google-sitemap-generator' ) ) { update_option( 'sm_show_beta_banner', 'false' ); $count = get_option( 'sm_beta_banner_discarded_count' ); if ( gettype( $count ) !== 'boolean' ) { update_option( 'sm_beta_banner_discarded_count', (int) $count + 1 ); } else { add_option( 'sm_beta_banner_discarded_on', gmdate( 'Y/m/d' ) ); update_option( 'sm_beta_banner_discarded_count', (int) 1 ); } GoogleSitemapGeneratorLoader::setup_rewrite_hooks(); GoogleSitemapGeneratorLoader::activate_rewrite(); } else { add_option( 'sm_beta_notice_dismissed_from_wp_admin', 'true' ); } } else { add_option( 'sm_beta_notice_dismissed_from_wp_admin', 'true' ); } } } if ( isset( $_POST['enable_updates'] ) ) { if (isset($_POST['enable_updates_nonce_token']) && check_admin_referer('enable_updates_nonce', 'enable_updates_nonce_token')){ if ( 'true' === $_POST['enable_updates'] ) { $auto_update_plugins = get_option( 'auto_update_plugins' ); if ( ! is_array( $auto_update_plugins ) ) { $auto_update_plugins = array(); } array_push( $auto_update_plugins, 'google-sitemap-generator/sitemap.php' ); update_option( 'auto_update_plugins', $auto_update_plugins ); } elseif ( 'false' === $_POST['enable_updates'] ) { update_option( 'sm_hide_auto_update_banner', 'yes' ); } } } /* if ( isset( $_POST['disable_plugin'] ) ) { if (isset($_POST['disable_plugin_sitemap_nonce_token']) && check_admin_referer('disable_plugin_sitemap_nonce', 'disable_plugin_sitemap_nonce_token')){ if ( strpos( $_POST['disable_plugin'], 'all_in_one' ) !== false ) { $default_value = 'default'; $aio_seo_options = get_option( 'aioseo_options', $default_value ); if ( $aio_seo_options !== $default_value ) { $aio_seo_options = json_decode( $aio_seo_options ); $aio_seo_options->sitemap->general->enable = 0; update_option( 'aioseo_options', json_encode( $aio_seo_options ) ); } } elseif( strpos( $_POST['disable_plugin'], 'wp-seo' ) !== false ) { $yoast_options = get_option( 'wpseo' ); $yoast_options['enable_xml_sitemap'] = false; update_option( 'wpseo', $yoast_options ); } } } */ } } $updateUrlRules = get_option('sm_options'); if(!isset($updateUrlRules['sm_b_rewrites2']) || $updateUrlRules['sm_b_rewrites2'] == false){ GoogleSitemapGeneratorLoader::setup_rewrite_hooks(); GoogleSitemapGeneratorLoader::activate_rewrite(); GoogleSitemapGeneratorLoader::activation_indexnow_setup(); if (isset($updateUrlRules['sm_b_rewrites2'])) { $updateUrlRules['sm_b_rewrites2'] = true; update_option('sm_options', $updateUrlRules); } else { $updateUrlRules['sm_b_rewrites2'] = true; add_option('sm_options', $updateUrlRules); update_option('sm_options', $updateUrlRules); } } if(isset($updateUrlRules['sm_links_page'] )){ $sm_links_page = intval($updateUrlRules['sm_links_page']); if($sm_links_page < 1000) { $updateUrlRules['sm_links_page'] = 1000; update_option('sm_options', $updateUrlRules); } } if(!isset($updateUrlRules['sm_b_activate_indexnow']) || $updateUrlRules['sm_b_activate_indexnow'] == false){ $updateUrlRules['sm_b_activate_indexnow'] = true; $updateUrlRules['sm_b_indexnow'] = true; update_option('sm_options', $updateUrlRules); } } function disable_plugins_callback(){ if (current_user_can('manage_options')) { check_ajax_referer('disable_plugin_sitemap_nonce', 'nonce'); $pluginList = sanitize_text_field($_POST['pluginList']); $pluginsToDisable = explode(',', $pluginList); foreach ($pluginsToDisable as $plugin) { if ($plugin === 'all-in-one-seo-pack/all_in_one_seo_pack.php') { /* all in one seo deactivation */ $aioseo_option_key = 'aioseo_options'; if ($aioseo_options = get_option($aioseo_option_key)) { $aioseo_options = json_decode($aioseo_options, true); $aioseo_options['sitemap']['general']['enable'] = false; update_option($aioseo_option_key, json_encode($aioseo_options)); } } if ($plugin === 'wordpress-seo/wp-seo.php') { /* yoast sitemap deactivation */ if ($yoast_options = get_option('wpseo')) { $yoast_options['enable_xml_sitemap'] = false; update_option('wpseo', $yoast_options); } } if ($plugin === 'jetpack/jetpack.php') { /* jetpack sitemap deactivation */ $modules_array = get_option('jetpack_active_modules'); if(is_array($modules_array)) { if (in_array('sitemaps', $modules_array)) { $key = array_search('sitemaps', $modules_array); unset($modules_array[$key]); update_option('jetpack_active_modules', $modules_array); } } } if ($plugin === 'wordpress-sitemap') { /* Wordpress sitemap deactivation */ $options = get_option('sm_options', array()); if (isset($options['sm_wp_sitemap_status'])) $options['sm_wp_sitemap_status'] = false; else $options['sm_wp_sitemap_status'] = false; update_option('sm_options', $options); } } echo 'Plugins sitemaps disabled successfully'; wp_die(); } } function conflict_plugins_admin_notice(){ GoogleSitemapGeneratorLoader::create_notice_conflict_plugin(); } /* send to index updated url */ function indexnow_after_post_save($new_status, $old_status, $post) { $indexnow = get_option('sm_options'); $indexNowStatus = isset($indexnow['sm_b_indexnow']) ? $indexnow['sm_b_indexnow'] : false; if ($indexNowStatus === true) { $newUrlToIndex = new GoogleSitemapGeneratorIndexNow(); $is_changed = false; $type = "add"; if ($old_status === 'publish' && $new_status === 'publish') { $is_changed = true; $type = "update"; } else if ($old_status != 'publish' && $new_status === 'publish') { $is_changed = true; $type = "add"; } else if ($old_status === 'publish' && $new_status === 'trash') { $is_changed = true; $type = "delete"; } if ($is_changed) $newUrlToIndex->start(get_permalink($post)); } } // Don't do anything if this file was called directly. if ( defined( 'ABSPATH' ) && defined( 'WPINC' ) && ! class_exists( 'GoogleSitemapGeneratorLoader', false ) ) { sm_setup(); if(isset(get_option('sm_options')['sm_wp_sitemap_status']) ) $wp_sitemap_status = get_option('sm_options')['sm_wp_sitemap_status']; else $wp_sitemap_status = true; if($wp_sitemap_status = true) $wp_sitemap_status = '__return_true'; else $wp_sitemap_status = '__return_false'; add_filter( 'wp_sitemaps_enabled', $wp_sitemap_status ); add_action('wp_ajax_disable_plugins', 'disable_plugins_callback'); add_action('admin_notices', 'conflict_plugins_admin_notice'); } West – Affiliate Marketing Programs | CBOMO.COM https://cbomo.com Your Affiliate Online Money Opportunities Fri, 08 Mar 2024 15:22:03 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.4 West Coast developer advances $250M industrial project on Long Island https://cbomo.com/apiclick-aspxreffexrssaidtid65eb2d1a49c0453a9c17a1dd6308a13furlhttps%3a%2f%2flibn-com%2f2024%2f03%2f08%2fwest-coast-developer-advances-250m-industrial-project-on-long-island%2fc6127693699566/ https://cbomo.com/apiclick-aspxreffexrssaidtid65eb2d1a49c0453a9c17a1dd6308a13furlhttps%3a%2f%2flibn-com%2f2024%2f03%2f08%2fwest-coast-developer-advances-250m-industrial-project-on-long-island%2fc6127693699566/#respond Fri, 08 Mar 2024 15:22:03 +0000 https://cbomo.com/apiclick-aspxreffexrssaidtid65eb2d1a49c0453a9c17a1dd6308a13furlhttps%3a%2f%2flibn-com%2f2024%2f03%2f08%2fwest-coast-developer-advances-250m-industrial-project-on-long-island%2fc6127693699566/ [ad_1]

Listen to this article

A San Francisco-based development firm is advancing a plan to build a new industrial complex on 100 acres in Wheatley Heights. 

Bristol Suffolk LLC, an affiliate of Bristol Group Inc., has applied to the Town of Babylon for a zoning change and subdivision approval to develop nine industrial buildings totaling more than 1.6 million square feet on vacant land that would be leased from Pinelawn Cemetery. 

Aerial view of Wheatley Heights development site. / Courtesy of Bristol Group Inc.

First pitched in 2022, the $250 million project, dubbed Suffolk Technology Park, would bring nine buildings ranging in size from 141,700 square feet to 247,360 square feet to the site located on Long Island Avenue between Little East Neck Road and North 28th Street. Each of the buildings, which would have 36-foot clear ceilings, several drive-in bays and loading docks and some office space, will be designed to house three to six small and mid-sized businesses, according to the concept design plan submitted to the town. 

“Suffolk Technology Park provides an exceptional opportunity to build a world-class business park designed to attract small and medium-sized businesses that are seeking state-of-the-art facilities in close proximity to western Suffolk County’s attractive labor force,” said Jeff Kott, managing partner of Bristol Group, Inc. “The master-planned business park will be one of the most significant new developments in the Town of Babylon in terms of diverse job creation and its long-term economic impact to the surrounding area, particularly the Wyandanch School District and community.”  

The project is planned to be constructed in three phases, with each phase taking from 12 to 18 months to complete. The first phase is projected to start in July 2025, the second phase beginning in Q4 2027, and the third phase planned to start in Q4 2029, according to the developer’s application to the town. 

Rendering of a building at the proposed Suffolk Technology Park. / Courtesy of Bristol Group Inc.

The development is expected to create more than 400 construction jobs and more than 2,000 permanent full-time equivalent jobs once fully complete, according to an economic impact study from Melville-based Nelson, Pope & Voorhis.  

“The economic impact that this project will provide all the communities surrounding the project is very impactful and exciting,” said David Williams, managing director of Development for Bristol Group. “It’s estimated that when fully constructed and leased, the Suffolk Technology Park will begin paying more than $5.2 million in annual property taxes that will regularly escalate over the following years, of which $3.8 million is projected to go directly to fund the Wyandanch School District, fire department, ambulance and library.”   

The developer has proposed a new zoning district called Planned Industrial Park II to accommodate a modern business park. According to attorney Bram Weber, of Melville-based Weber Law Group, who represents the project, there are several next steps in the development’s approval process. The project will undergo an extensive environmental and planning review, and the developer will be preparing an environmental impact statement, which will be reviewed pursuant to SEQR. Then the town will hold public hearings on the project before voting on its approval, which is expected to happen by the end of this year or early next year. 

“There is no development existing on Long Island today like this one,” Weber told LIBN. “Long Island has a history of very successful industrial parks. This park builds on that history and introduces a product into the marketplace so that Long Island companies can grow and start here.” 

The Suffolk Technology Park is designed by the Ware Malcomb architecture firm and engineering is being provided by Melville-based Bohler Engineering. Phil Heilpern, Martin Lomazow and Matt Manoogian of CBRE brokered the ground lease agreement, representing Pinelawn Cemetery. 

Founded in 1980, Bristol Group Inc. is a real estate investment and development firm that has acquired, developed or redeveloped over $3 billion of real estate, which includes over 24 million square feet of commercial properties. Last year, the company completed its first Long Island project, a 178,134-square-foot industrial building on 10.75 acres at 49 Mall Drive in Commack called the Bristol Logistics Center. 



[ad_2]

Source link

]]>
https://cbomo.com/apiclick-aspxreffexrssaidtid65eb2d1a49c0453a9c17a1dd6308a13furlhttps%3a%2f%2flibn-com%2f2024%2f03%2f08%2fwest-coast-developer-advances-250m-industrial-project-on-long-island%2fc6127693699566/feed/ 0
Day 3 West — 2023 CrossFit Games Semifinals – CrossFit Games https://cbomo.com/day-3-west-2023-crossfit-games-semifinals-crossfit-games/ https://cbomo.com/day-3-west-2023-crossfit-games-semifinals-crossfit-games/#respond Sun, 28 May 2023 06:08:49 +0000 https://cbomo.com/day-3-west-2023-crossfit-games-semifinals-crossfit-games/ [ad_1]

  1. Day 3 West — 2023 CrossFit Games Semifinals  CrossFit Games
  2. Hannah Black Makes Waves on Moving Day at North America West Semifinal  Morning Chalk Up
  3. LIVESTREAM – How To Watch CrossFit North America West, South America, Oceania  BOXROX
  4. Day 3 Oceania — 2023 CrossFit Games Semifinals  CrossFit Games
  5. Nerding Out at Semifinals: Day 1 at North America West Semifinals  Morning Chalk Up
  6. View Full Coverage on Google News

[ad_2]

Source link

]]>
https://cbomo.com/day-3-west-2023-crossfit-games-semifinals-crossfit-games/feed/ 0
Day 2 West — 2023 CrossFit Games Semifinals – CrossFit Games https://cbomo.com/day-2-west-2023-crossfit-games-semifinals-crossfit-games/ https://cbomo.com/day-2-west-2023-crossfit-games-semifinals-crossfit-games/#respond Fri, 26 May 2023 21:22:51 +0000 https://cbomo.com/day-2-west-2023-crossfit-games-semifinals-crossfit-games/ [ad_1]

  1. Day 2 West — 2023 CrossFit Games Semifinals  CrossFit Games
  2. Global Athletes to Descend on Pasadena for Intense NOBULL CrossFit Semifinals – Pasadena Now  Pasadena Now
  3. CrossFit Semifinals Predictions – North America West, South America, and Oceania  BOXROX
  4. 2023 CrossFit Semifinal Preview: Copa Sur  Morning Chalk Up
  5. Day 1 West — 2023 CrossFit Games Semifinals  CrossFit Games
  6. View Full Coverage on Google News

[ad_2]

Source link

]]>
https://cbomo.com/day-2-west-2023-crossfit-games-semifinals-crossfit-games/feed/ 0
Day 1 West — 2023 CrossFit Games Semifinals – CrossFit Games https://cbomo.com/day-1-west-2023-crossfit-games-semifinals-crossfit-games/ https://cbomo.com/day-1-west-2023-crossfit-games-semifinals-crossfit-games/#respond Thu, 25 May 2023 21:08:54 +0000 https://cbomo.com/day-1-west-2023-crossfit-games-semifinals-crossfit-games/ [ad_1]

  1. Day 1 West — 2023 CrossFit Games Semifinals  CrossFit Games
  2. Global Athletes to Descend on Pasadena for Intense NOBULL CrossFit Semifinals – Pasadena Now  Pasadena Now
  3. 2023 CrossFit Semifinal Preview: Copa Sur  Morning Chalk Up
  4. CrossFit Semifinals Predictions – North America West, South America, and Oceania  BOXROX
  5. 2023 CrossFit North America East Semifinal — Full Results – Fitness Volt  Fitness Volt
  6. View Full Coverage on Google News

[ad_2]

Source link

]]>
https://cbomo.com/day-1-west-2023-crossfit-games-semifinals-crossfit-games/feed/ 0
West Virginia one of the worst states for working moms https://cbomo.com/west-virginia-one-of-the-worst-states-for-working-moms/ https://cbomo.com/west-virginia-one-of-the-worst-states-for-working-moms/#respond Mon, 08 May 2023 04:08:49 +0000 https://cbomo.com/west-virginia-one-of-the-worst-states-for-working-moms/ [ad_1]

CLARKSBURG, W.Va. (WBOY) — Working while taking care of a family can be tough deal for women, and unfortunately, West Virginia is not the best place for these hard workers, according to one study.

A recent study from WalletHub compared all 50 states and the District of Columbia across 17 key metrics to find out which were the best and worst places to be a working mom in 2023.

According to their findings, West Virginia is the 47th worst state to be a working mom. In the category of “Professional Opportunities,” it ranked the worst. The study also found that West Virginia has the 5th highest “Gender Pay Gap.”

Best and Worst States for Working Moms

Overall Rank  State Total Score  Child Care  Professional Opportunities  Work-Life Balance 
1 Massachusetts 66.20 2 11 1
2 Rhode Island 65.05 10 2 2
3 Connecticut 61.06 5 5 5
47 West Virginia 32.31 47 51 32
48 Mississippi 32.17 44 44 49
49 Alabama 31.04 46 47 43
50 South Carolina 30.20 48 45 45
51 Louisiana 29.14 50 50 38
Note: With the exception of “Total Score,” all of the columns in the table above depict the relative rank of that state, where a rank of 1 represents the best conditions for that metric category.

To achieve their rankings, WalletHub used 17 weighted metrics across three key dimensions: Child Care, Professional Opportunities and Work-Life Balance.

“Each metric was graded on a 100-point scale, with a score of 100 representing the most favorable conditions for working moms,” WalletHub said.

The weighted average of all metrics, stated below, was then used to calculate each state’s overall score and rank-order.

Child Care – Total Points: 40

  • Day-Care Quality: Double Weight (~10.00 Points)
  • Child-Care Costs: Full Weight (~5.00 Points)
    Note: This metric was adjusted for the median women’s salary.
  • Pediatricians per Capita: Full Weight (~5.00 Points)
  • School-System Quality: Double Weight (~10.00 Points)
    Note: This metric is based on WalletHub’s “States with the Best & Worst School Systems” ranking.
  • Share of Nationally Accredited Child Care Centers: Full Weight (~5.00 Points)
  • Number of Childcare Workers per Total Number of Children: Full Weight (~5.00 Points)
    Note: Childcare workers attend to the basic needs of children, such as dressing, bathing, feeding, and overseeing play. They may help younger children prepare for kindergarten or assist older children with homework.

Professional Opportunities – Total Points: 30

  • Gender Pay Gap: Double Weight (~6.67 Points)
    Note: This metric measures women’s earnings as a percentage of men’s.
  • Ratio of Female Executives to Male Executives: Full Weight (~3.33 Points)
  • Median Women’s Salary: Full Weight (~3.33 Points)
    Note: This metric was adjusted for the cost of living.
  • Share of Working Women Living with Economic Security: Full Weight (~3.33 Points)
    Note: This metric is based on the Basic Economic Security Tables (BEST) Index, which measures how much income working adults of different family types need to be economically secure. Economic security means having “enough income to meet…basic monthly expenses—such as housing, food, transportation and child care expenses—and save for emergencies and retirement.”
  • Share of Families in Poverty: Full Weight (~3.33 Points)
    Note: “Families” include single mothers with children aged 0 to 17.
  • Female Unemployment Rate: Full Weight (~3.33 Points)
  • Gender-Representation Gap in Different Economic Sectors: Full Weight (~3.33 Points)
    Note: This metric measures the absolute difference between the share of female employees and male employees.
  • WalletHub “Best States for Working from Home” Ranking: Full Weight (~3.33 Points)
    Note: This metric is based on WalletHub’s “Best States for Working from Home” ranking.

Work-Life Balance – Total Points: 30

  • Parental-Leave Policy Score: Double Weight (~15.00 Points)
    Note: This metric is based on the report card from Expecting Better: A State-by-State Analysis of Laws That Help Expecting and New Parents.
  • Average Length of a Woman’s Work Week (in Hours): Full Weight (~7.50 Points)
  • Women’s Average Commute Time (in Minutes): Full Weight (~7.50 Points)

[ad_2]

Source link

]]>
https://cbomo.com/west-virginia-one-of-the-worst-states-for-working-moms/feed/ 0
West Virginia settles $7.9 million lawsuit with Juul https://cbomo.com/west-virginia-settles-7-9-million-lawsuit-with-juul/ https://cbomo.com/west-virginia-settles-7-9-million-lawsuit-with-juul/#respond Wed, 12 Apr 2023 02:32:07 +0000 https://cbomo.com/west-virginia-settles-7-9-million-lawsuit-with-juul/ [ad_1]

Juul Labs will pay West Virginia $7.9 million to settle a lawsuit over the e-cigarette company’s marketing tactics targeting teens, the state’s Attorney General Patrick Morrisey announced on Monday.

CBS News said the smoking company violated the state’s Consumer Credit and Protection Act and was using social media and popular influencers to unfairly target teens in its marketing.

Morrisey said that Juul “deceived consumers about its nicotine strength, misrepresented the nicotine equivalency of its products to traditional cigarettes and understated the risks of addiction that occur with such powerful levels of nicotine,” per CNN.

CBS News said a report from 2020 found more than 60% of high school students in West Virginia had tried e-cigarettes in 2019, which was 44% higher than in 2017.

Morrisey said in a statement, “This settlement puts companies like Juul in check to not copy big tobacco’s playbook and gear marketing strategies toward underage people,” per CBS News.

Juul Labs

The Associated Press quoted the company: “With West Virginia having the highest cigarette-smoking rate in the U.S., we hope that some funds will go directly to interventions to reduce the use of combustible cigarettes and improve public health in the state.”

CNN said terms of the agreement require Juul Labs to finance resources against underage drug use and create smoking-cessation programs.

“In a statement, a Juul company spokesperson said the settlement is ‘another step in its ongoing commitment to resolve issues from the company’s past,’” the news outlet reported.

According to Morrisey, 14.3% of West Virginia high schoolers used e-cigarettes at least once in the past 30 days, which is higher than the national average of 13.2%, per CNN.

Previous lawsuits

According to NPR, Juul settled similar lawsuits with 37 states and territories throughout 2022, totaling more than 5,000 cases with 10,000 plaintiffs about the company’s vaping products.

The Deseret News reported last year that Utah will be receiving about $8.6 million over six years, the outcome of a tentative $438.5 million settlement involving several states that sued the company with the same arguments.

Concerning that settlement, Utah Department of Commerce Executive Director Margaret Busse said in a statement that it “represented a big win against those who purposely market dangerous products to youth.”

CBS News said last year the U.S. Food and Drug Administration placed a temporary hold on the decision to stop Juul from marketing and distributing products after a legal challenge from the smoking company.



[ad_2]

Source link

]]>
https://cbomo.com/west-virginia-settles-7-9-million-lawsuit-with-juul/feed/ 0
3 Hospitalized After Train Collides With Boulder in West Virginia https://cbomo.com/3-hospitalized-after-train-collides-with-boulder-in-west-virginia/ https://cbomo.com/3-hospitalized-after-train-collides-with-boulder-in-west-virginia/#respond Thu, 09 Mar 2023 20:59:14 +0000 https://cbomo.com/3-hospitalized-after-train-collides-with-boulder-in-west-virginia/ [ad_1]

Traveling has been a bit scary lately, with tales of dangerous plane rides and train accidents leaving many weary about boarding any mechanism at all.

Another report on Wednesday shows that an empty coal train making its way through a remote area of West Virginia derailed after running into a rock slide, injuring three crew members and causing a fire.

The CSX freight train confirmed an “unknown quantity of diesel fuel and oil spilled” amid the accident but maintained that none of the chemicals or materials being carried on the train were hazardous.

“We greatly appreciate the swift actions of the local first responders in Sandstone [VA] that rendered aide to our valued crew members,” CSX said in a release. “The safety of our employees and the community is our top priority as we dispatch our teams to assess the situation and develop a plan to completely restore the area.”

The West Virginia Emergency Management division confirmed that one locomotive and one fuel tank derailed into the New River, noting that the area in Sandstone where the accident happened sits inside the New River National Park and Preserve and is “somewhat remote.”

Crews begin cleanup in Sandstone, WV. (Getty Images)

“At the time of this report, no roads are closed, nor has there been an evacuation of nearby homes,” the agency said. “It is unknown when the tracks will be repaired to allow new rail traffic.”

On board were three crew members, an engineer, an engineer trainee, and a conductor. Two of three crew members were still hospitalized Thursday morning for non-life-threatening injuries, while the third was released.

On Thursday, CSX confirmed that all 22 empty cars had been removed from the area in addition to the boulders that caused the accident.

The company also said that it has “deployed additional environmental measures” to ensure no extra fuel is leaked into the area during the removal process, including tapping the National Park Service, the U.S. Environmental Protection Agency, and the West Virginia Department of Environmental Protection to remove any parts of the area that may have been contaminated with fuel or materials from the train.

CSX Transportation is a Florida-based railroad company that serves the Eastern U.S. and parts of Canada. It’s estimated to operate over 21,000 miles of railroad track.

[ad_2]

Source link

]]>
https://cbomo.com/3-hospitalized-after-train-collides-with-boulder-in-west-virginia/feed/ 0