Tweak auto load to find admin classes #5041
This commit is contained in:
parent
3effa037b4
commit
f1c69b6355
|
@ -191,59 +191,35 @@ final class WooCommerce {
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function autoload( $class ) {
|
public function autoload( $class ) {
|
||||||
|
$path = null;
|
||||||
$class = strtolower( $class );
|
$class = strtolower( $class );
|
||||||
|
$file = 'class-' . str_replace( '_', '-', $class ) . '.php';
|
||||||
|
|
||||||
if ( strpos( $class, 'wc_gateway_' ) === 0 ) {
|
if ( strpos( $class, 'wc_gateway_' ) === 0 ) {
|
||||||
|
|
||||||
$path = $this->plugin_path() . '/includes/gateways/' . trailingslashit( substr( str_replace( '_', '-', $class ), 11 ) );
|
$path = $this->plugin_path() . '/includes/gateways/' . trailingslashit( substr( str_replace( '_', '-', $class ), 11 ) );
|
||||||
$file = 'class-' . str_replace( '_', '-', $class ) . '.php';
|
|
||||||
|
|
||||||
if ( is_readable( $path . $file ) ) {
|
|
||||||
include_once( $path . $file );
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
} elseif ( strpos( $class, 'wc_shipping_' ) === 0 ) {
|
} elseif ( strpos( $class, 'wc_shipping_' ) === 0 ) {
|
||||||
|
|
||||||
$path = $this->plugin_path() . '/includes/shipping/' . trailingslashit( substr( str_replace( '_', '-', $class ), 12 ) );
|
$path = $this->plugin_path() . '/includes/shipping/' . trailingslashit( substr( str_replace( '_', '-', $class ), 12 ) );
|
||||||
$file = 'class-' . str_replace( '_', '-', $class ) . '.php';
|
|
||||||
|
|
||||||
if ( is_readable( $path . $file ) ) {
|
|
||||||
include_once( $path . $file );
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
} elseif ( strpos( $class, 'wc_shortcode_' ) === 0 ) {
|
} elseif ( strpos( $class, 'wc_shortcode_' ) === 0 ) {
|
||||||
|
|
||||||
$path = $this->plugin_path() . '/includes/shortcodes/';
|
$path = $this->plugin_path() . '/includes/shortcodes/';
|
||||||
$file = 'class-' . str_replace( '_', '-', $class ) . '.php';
|
|
||||||
|
|
||||||
if ( is_readable( $path . $file ) ) {
|
|
||||||
include_once( $path . $file );
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
} elseif ( strpos( $class, 'wc_meta_box' ) === 0 ) {
|
} elseif ( strpos( $class, 'wc_meta_box' ) === 0 ) {
|
||||||
|
|
||||||
$path = $this->plugin_path() . '/includes/admin/post-types/meta-boxes/';
|
$path = $this->plugin_path() . '/includes/admin/post-types/meta-boxes/';
|
||||||
$file = 'class-' . str_replace( '_', '-', $class ) . '.php';
|
} elseif ( strpos( $class, 'wc_admin' ) === 0 ) {
|
||||||
|
$path = $this->plugin_path() . '/includes/admin/';
|
||||||
if ( is_readable( $path . $file ) ) {
|
|
||||||
include_once( $path . $file );
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ( $path && is_readable( $path . $file ) ) {
|
||||||
|
include_once( $path . $file );
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fallback
|
||||||
if ( strpos( $class, 'wc_' ) === 0 ) {
|
if ( strpos( $class, 'wc_' ) === 0 ) {
|
||||||
|
|
||||||
$path = $this->plugin_path() . '/includes/';
|
$path = $this->plugin_path() . '/includes/';
|
||||||
$file = 'class-' . str_replace( '_', '-', $class ) . '.php';
|
}
|
||||||
|
|
||||||
if ( is_readable( $path . $file ) ) {
|
if ( $path && is_readable( $path . $file ) ) {
|
||||||
include_once( $path . $file );
|
include_once( $path . $file );
|
||||||
return;
|
return;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue