1
0
Fork 0
mirror of synced 2025-04-06 07:13:33 +03:00

remove reduntant directory for customs

This commit is contained in:
Pavel 2020-07-20 12:18:02 +03:00
parent fc93ba05cf
commit 6194589dee

View file

@ -134,26 +134,10 @@ if (!class_exists( 'WC_Integration_Retailcrm')) :
*/
public static function checkCustomFile($file)
{
$oldCustomizationFiles = array(
'include/class-wc-retailcrm-icml.php',
'include/class-wc-retailcrm-orders.php',
'include/class-wc-retailcrm-customers.php',
'include/class-wc-retailcrm-inventories.php',
'include/class-wc-retailcrm-history.php',
'include/class-wc-retailcrm-ga.php',
'include/class-wc-retailcrm-daemon-collector.php'
);
$withoutInclude = WP_CONTENT_DIR . '/retailcrm-custom/' . str_replace('include/', '', $file);
if (in_array($file, $oldCustomizationFiles)) {
$pathWithoutInclude = WP_CONTENT_DIR . '/retailcrm-custom/' . str_replace('include/', '', $file);
if (file_exists($pathWithoutInclude)) {
return $pathWithoutInclude;
}
}
if (file_exists( WP_CONTENT_DIR . '/retailcrm-custom/' . $file)) {
return WP_CONTENT_DIR . '/retailcrm-custom/' . $file;
if (file_exists($withoutInclude)) {
return $withoutInclude;
}
return WP_PLUGIN_DIR . '/woo-retailcrm/' . $file;