File manager - Edit - /home/verseaumee/maze/wp-content/plugins/packlink-pro-shipping/Lib/class-resource-copier.php
Back
<?php /** * Packlink PRO Shipping WooCommerce Integration. * * @package Packlink */ namespace Packlink\WooCommerce\Lib; use RuntimeException; /** * Class Resource_Copier * * @package Packlink\WooCommerce\Lib */ class Resource_Copier { /** * Copies resources from vendor to resource directory. */ public static function copy() { $from_base = __DIR__ . '/../vendor/packlink/integration-core/src/BusinessLogic/Resources/'; $brand_base = __DIR__ . '/../vendor/packlink/integration-core/src/Brands/Packlink/Resources/'; $to_base = __DIR__ . '/../resources/'; $map = array( $from_base . 'js' => $to_base . 'packlink/js', $from_base . 'css' => $to_base . 'packlink/css', $from_base . 'images' => $to_base . 'packlink/images', $from_base . 'templates' => $to_base . 'packlink/templates', $from_base . 'countries' => $to_base . 'packlink/countries', $brand_base . 'countries' => $to_base . 'packlink/brand/countries', $from_base . 'images/carriers/' => $to_base . 'images/carriers', ); foreach ( $map as $from => $to ) { self::copy_directory( $from, $to ); } } /** * Copies directory. * * @param string $src Source directory. * @param string $dst Destination directory. */ private static function copy_directory( $src, $dst ) { $dir = opendir( $src ); self::mkdir( $dst ); $file = readdir( $dir ); while ( false !== ( $file ) ) { if ( ( '.' !== $file ) && ( '..' !== $file ) ) { if ( is_dir( $src . '/' . $file ) ) { self::mkdir( $dst . '/' . $file ); self::copy_directory( $src . '/' . $file, $dst . '/' . $file ); } else { copy( $src . '/' . $file, $dst . '/' . $file ); } } $file = readdir( $dir ); } closedir( $dir ); } /** * Creates directory. * * @param string $destination Destination directory. * * @throws RuntimeException If directory can not be created. */ private static function mkdir( $destination ) { if ( ! file_exists( $destination ) && ! mkdir( $destination, 0777, true ) && ! is_dir( $destination ) ) { throw new RuntimeException( sprintf( 'Directory "%s" was not created', $destination ) ); } } }
| ver. 1.4 |
Github
|
.
| PHP 8.5.7 | Generation time: 0 |
proxy
|
phpinfo
|
Settings