Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
woocommerce
/
vendor
/
woocommerce
/
blueprint
/
src
/
ResourceStorages
:
LocalThemeResourceStorage.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Automattic\WooCommerce\Blueprint\ResourceStorages; /** * Class LocalThemeResourceStorage */ class LocalThemeResourceStorage extends LocalPluginResourceStorage { /** * The suffix. * * @var string The suffix. */ protected string $suffix = 'themes'; /** * Get the supported resource. * * @return string The supported resource. */ public function get_supported_resource(): string { return 'self/themes'; } }