Suspend
2 years ago
ActionScheduler.php
2 years ago
AdminPages.php
8 months ago
AdminUrl.php
8 months ago
DB.php
4 years ago
Post.php
5 years ago
Resources.php
5 years ago
SyncHash.php
8 months ago
WCTaxonomies.php
1 year ago
WcAdminPages.php
8 months ago
WpAdminPages.php
1 year ago
Resources.php
15 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WCML\Utilities; |
| 4 | |
| 5 | use function WPML\FP\partial; |
| 6 | |
| 7 | class Resources { |
| 8 | // enqueueApp :: string $app -> ( string $localizeData ) |
| 9 | public static function enqueueApp( $app ) { |
| 10 | return partial( [ '\WPML\LIB\WP\App\Resources', 'enqueue' ], |
| 11 | $app, WCML_PLUGIN_URL, WCML_PLUGIN_PATH, WCML_VERSION, 'woocommerce-multilingual' |
| 12 | ); |
| 13 | } |
| 14 | } |
| 15 |