at path:
ROOT
/
wp-content
/
plugins
/
woocommerce
/
src
/
Blocks
/
Library.php
run:
R
W
Run
AI
DIR
2026-04-15 05:42:46
R
W
Run
AIContent
DIR
2026-04-15 05:42:46
R
W
Run
Assets
DIR
2026-04-15 05:42:46
R
W
Run
BlockTypes
DIR
2026-04-15 05:42:46
R
W
Run
Domain
DIR
2026-04-15 05:42:46
R
W
Run
Images
DIR
2026-04-15 05:42:46
R
W
Run
Integrations
DIR
2026-04-15 05:42:46
R
W
Run
Patterns
DIR
2026-04-15 05:42:46
R
W
Run
Payments
DIR
2026-04-15 05:42:46
R
W
Run
Registry
DIR
2026-04-15 05:42:46
R
W
Run
SharedStores
DIR
2026-04-15 05:42:46
R
W
Run
Shipping
DIR
2026-04-15 05:42:46
R
W
Run
Templates
DIR
2026-04-15 05:42:46
R
W
Run
Utils
DIR
2026-04-15 05:42:46
R
W
Run
Assets.php
2.77 KB
2026-04-15 05:42:46
R
W
Run
Delete
Rename
AssetsController.php
19.67 KB
2026-04-15 05:42:46
R
W
Run
Delete
Rename
BlockPatterns.php
7.92 KB
2026-04-15 05:42:46
R
W
Run
Delete
Rename
BlockTemplatesController.php
17.98 KB
2026-04-15 05:42:46
R
W
Run
Delete
Rename
BlockTemplatesRegistry.php
6.3 KB
2026-04-15 05:42:46
R
W
Run
Delete
Rename
BlockTypesController.php
25.03 KB
2026-04-15 05:42:46
R
W
Run
Delete
Rename
DependencyDetection.php
10.66 KB
2026-04-15 05:42:46
R
W
Run
Delete
Rename
InboxNotifications.php
583 By
2026-04-15 05:42:46
R
W
Run
Delete
Rename
Installer.php
4.08 KB
2026-04-15 05:42:46
R
W
Run
Delete
Rename
Library.php
1.06 KB
2026-04-15 05:42:46
R
W
Run
Delete
Rename
Options.php
336 By
2026-04-15 05:42:46
R
W
Run
Delete
Rename
Package.php
2.72 KB
2026-04-15 05:42:46
R
W
Run
Delete
Rename
QueryFilters.php
17.8 KB
2026-04-15 05:42:46
R
W
Run
Delete
Rename
TemplateOptions.php
1.21 KB
2026-04-15 05:42:46
R
W
Run
Delete
Rename
error_log
up
📄
Library.php
Save
<?php namespace Automattic\WooCommerce\Blocks; use Automattic\WooCommerce\Blocks\BlockTypes\AtomicBlock; use Automattic\WooCommerce\Blocks\Package; use Automattic\WooCommerce\Blocks\Assets\AssetDataRegistry; use Automattic\WooCommerce\Blocks\Assets\Api as AssetApi; use Automattic\WooCommerce\Blocks\Integrations\IntegrationRegistry; /** * Library class. * * @deprecated 5.0.0 This class will be removed in a future release. This has been replaced by BlockTypesController. * @internal */ class Library { /** * Initialize block library features. * * @deprecated 5.0.0 */ public static function init() { _deprecated_function( 'Library::init', '5.0.0' ); } /** * Register custom tables within $wpdb object. * * @deprecated 5.0.0 */ public static function define_tables() { _deprecated_function( 'Library::define_tables', '5.0.0' ); } /** * Register blocks, hooking up assets and render functions as needed. * * @deprecated 5.0.0 */ public static function register_blocks() { _deprecated_function( 'Library::register_blocks', '5.0.0' ); } }