PHP 8.2.31
Preview: CustomizeStoreWithBlocks.php Size: 2.35 KB
/home/nshryvcy/radiantskinclinics.org/wp-content/plugins/woocommerce/src/Internal/Admin/Notes/CustomizeStoreWithBlocks.php

<?php
/**
 * WooCommerce Admin: Customize your online store with WooCommerce blocks.
 *
 * Adds a note to customize the client online store with WooCommerce blocks.
 *
 * @package WooCommerce\Admin
 */

namespace Automattic\WooCommerce\Internal\Admin\Notes;

defined( 'ABSPATH' ) || exit;

use Automattic\WooCommerce\Admin\Notes\Note;
use Automattic\WooCommerce\Admin\Notes\NoteTraits;

/**
 * Customize_Store_With_Blocks.
 */
class CustomizeStoreWithBlocks {
	/**
	 * Note traits.
	 */
	use NoteTraits;

	/**
	 * Name of the note for use in the database.
	 */
	const NOTE_NAME = 'wc-admin-customize-store-with-blocks';

	/**
	 * Get the note.
	 *
	 * @return Note
	 */
	public static function get_note() {
		$onboarding_profile = get_option( 'woocommerce_onboarding_profile', array() );

		// Confirm that $onboarding_profile is set.
		if ( empty( $onboarding_profile ) ) {
			return;
		}

		// Make sure that the person who filled out the OBW was not setting up
		// the store for their customer/client.
		if (
			! isset( $onboarding_profile['setup_client'] ) ||
			$onboarding_profile['setup_client']
		) {
			return;
		}

		// We want to show the note after fourteen days.
		if ( ! self::is_wc_admin_active_in_date_range( 'week-1-4', 14 * DAY_IN_SECONDS ) ) {
			return;
		}

		// Don't show if there aren't products.
		$query    = new \WC_Product_Query(
			array(
				'limit'  => 1,
				'return' => 'ids',
				'status' => array( 'publish' ),
			)
		);
		$products = $query->get_products();
		if ( 0 === count( $products ) ) {
			return;
		}

		$note = new Note();
		$note->set_title( __( 'Customize your online store with WooCommerce blocks', 'woocommerce' ) );
		$note->set_content( __( 'With our blocks, you can select and display products, categories, filters, and more virtually anywhere on your site — no need to use shortcodes or edit lines of code. Learn more about how to use each one of them.', 'woocommerce' ) );
		$note->set_type( Note::E_WC_ADMIN_NOTE_INFORMATIONAL );
		$note->set_name( self::NOTE_NAME );
		$note->set_content_data( (object) array() );
		$note->set_source( 'woocommerce-admin' );
		$note->add_action(
			'customize-store-with-blocks',
			__( 'Learn more', 'woocommerce' ),
			'https://woocommerce.com/posts/how-to-customize-your-online-store-with-woocommerce-blocks/?utm_source=inbox&utm_medium=product',
			Note::E_WC_ADMIN_NOTE_ACTIONED
		);
		return $note;
	}
}

Directory Contents

Dirs: 0 × Files: 30

Name Size Perms Modified Actions
2.35 KB lrw-r--r-- 2024-04-10 16:54:10
Edit Download
2.20 KB lrw-r--r-- 2025-01-21 18:53:44
Edit Download
1.68 KB lrw-r--r-- 2024-04-10 16:54:10
Edit Download
2.82 KB lrw-r--r-- 2025-06-02 15:59:32
Edit Download
1.63 KB lrw-r--r-- 2024-04-10 16:54:10
Edit Download
2.18 KB lrw-r--r-- 2025-01-21 18:53:44
Edit Download
1.50 KB lrw-r--r-- 2022-08-24 02:07:06
Edit Download
4.58 KB lrw-r--r-- 2023-03-21 20:45:06
Edit Download
1.68 KB lrw-r--r-- 2024-04-10 16:54:10
Edit Download
2.45 KB lrw-r--r-- 2024-04-10 16:54:10
Edit Download
1.54 KB lrw-r--r-- 2024-04-10 16:54:10
Edit Download
3.68 KB lrw-r--r-- 2024-04-10 16:54:10
Edit Download
2.21 KB lrw-r--r-- 2024-04-10 16:54:10
Edit Download
1.39 KB lrw-r--r-- 2024-04-10 16:54:10
Edit Download
5.25 KB lrw-r--r-- 2022-09-20 22:53:36
Edit Download
1.74 KB lrw-r--r-- 2024-04-10 16:54:10
Edit Download
2.68 KB lrw-r--r-- 2024-04-10 16:54:10
Edit Download
9.15 KB lrw-r--r-- 2024-04-10 16:54:10
Edit Download
2.14 KB lrw-r--r-- 2026-01-19 14:46:18
Edit Download
2.06 KB lrw-r--r-- 2026-01-19 14:46:18
Edit Download
1.64 KB lrw-r--r-- 2024-04-10 16:54:10
Edit Download
1.91 KB lrw-r--r-- 2023-03-21 20:45:06
Edit Download
1.51 KB lrw-r--r-- 2024-04-10 16:54:10
Edit Download
2.75 KB lrw-r--r-- 2026-01-19 14:46:18
Edit Download
2.38 KB lrw-r--r-- 2024-04-10 16:54:10
Edit Download
3.17 KB lrw-r--r-- 2025-01-21 18:53:44
Edit Download
2.12 KB lrw-r--r-- 2024-04-10 16:54:10
Edit Download
6.25 KB lrw-r--r-- 2024-04-10 16:54:10
Edit Download
1.88 KB lrw-r--r-- 2024-04-10 16:54:10
Edit Download
13.25 KB lrw-r--r-- 2025-05-12 21:07:28
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).