AI
1 year ago
AIContent
2 weeks ago
Assets
1 month ago
BlockTypes
2 weeks ago
Domain
2 weeks ago
Images
1 year ago
Integrations
2 years ago
Patterns
2 weeks ago
Payments
2 weeks ago
Registry
2 years ago
SharedStores
3 months ago
Shipping
2 weeks ago
Templates
3 weeks ago
Utils
1 week ago
Assets.php
2 years ago
AssetsController.php
2 weeks ago
BlockPatterns.php
2 weeks ago
BlockTemplatesController.php
9 months ago
BlockTemplatesRegistry.php
2 weeks ago
BlockTypesController.php
2 weeks ago
CoreBreadcrumbsCompatibility.php
2 weeks ago
DependencyDetection.php
2 weeks ago
InboxNotifications.php
2 years ago
Installer.php
3 months ago
Library.php
2 years ago
Options.php
2 years ago
Package.php
1 year ago
QueryFilters.php
1 month 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 |