AI
1 year ago
AIContent
1 year ago
Assets
4 weeks ago
BlockTypes
2 weeks ago
Domain
2 months ago
Images
1 year ago
Integrations
2 years ago
Patterns
6 months ago
Payments
5 months ago
Registry
2 years ago
SharedStores
2 months ago
Shipping
7 months ago
Templates
2 months ago
Utils
4 weeks ago
Assets.php
2 years ago
AssetsController.php
4 weeks ago
BlockPatterns.php
7 months ago
BlockTemplatesController.php
7 months ago
BlockTemplatesRegistry.php
10 months ago
BlockTypesController.php
4 weeks ago
DependencyDetection.php
5 months ago
InboxNotifications.php
2 years ago
Installer.php
2 months ago
Library.php
2 years ago
Options.php
2 years ago
Package.php
1 year ago
QueryFilters.php
7 months ago
TemplateOptions.php
1 year ago
Options.php
12 lines
| 1 | <?php |
| 2 | namespace Automattic\WooCommerce\Blocks; |
| 3 | |
| 4 | /** |
| 5 | * Contains all the option names used by the plugin. |
| 6 | */ |
| 7 | class Options { |
| 8 | |
| 9 | const WC_BLOCK_VERSION = 'wc_blocks_version'; |
| 10 | const WC_BLOCK_USE_BLOCKIFIED_PRODUCT_GRID_BLOCK_AS_TEMPLATE = 'wc_blocks_use_blockified_product_grid_block_as_template'; |
| 11 | } |
| 12 |