coding standards fixes
This commit is contained in:
parent
1a416875f8
commit
454b97080a
|
@ -27,7 +27,7 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
||||||
echo wp_kses_post( wc_cart_totals_shipping_method_label( $method ) ); ?>
|
echo wp_kses_post( wc_cart_totals_shipping_method_label( $method ) ); ?>
|
||||||
<input type="hidden" name="shipping_method[<?php echo $index; ?>]" data-index="<?php echo $index; ?>" id="shipping_method_<?php echo $index; ?>" value="<?php echo esc_attr( $method->id ); ?>" class="shipping_method" />
|
<input type="hidden" name="shipping_method[<?php echo $index; ?>]" data-index="<?php echo $index; ?>" id="shipping_method_<?php echo $index; ?>" value="<?php echo esc_attr( $method->id ); ?>" class="shipping_method" />
|
||||||
|
|
||||||
<?php elseif ( get_option('woocommerce_shipping_method_format') == 'select' ) : ?>
|
<?php elseif ( get_option( 'woocommerce_shipping_method_format' ) === 'select' ) : ?>
|
||||||
|
|
||||||
<select name="shipping_method[<?php echo $index; ?>]" data-index="<?php echo $index; ?>" id="shipping_method_<?php echo $index; ?>" class="shipping_method">
|
<select name="shipping_method[<?php echo $index; ?>]" data-index="<?php echo $index; ?>" id="shipping_method_<?php echo $index; ?>" class="shipping_method">
|
||||||
<?php foreach ( $available_methods as $method ) : ?>
|
<?php foreach ( $available_methods as $method ) : ?>
|
||||||
|
|
|
@ -37,7 +37,7 @@ global $woocommerce;
|
||||||
<?php if ( $checkout->enable_guest_checkout ) : ?>
|
<?php if ( $checkout->enable_guest_checkout ) : ?>
|
||||||
|
|
||||||
<p class="form-row form-row-wide create-account">
|
<p class="form-row form-row-wide create-account">
|
||||||
<input class="input-checkbox" id="createaccount" <?php checked( ( true === $checkout->get_value('createaccount') || ( true === apply_filters( 'woocommerce_create_account_default_checked', false ) ) ), true) ?> type="checkbox" name="createaccount" value="1" /> <label for="createaccount" class="checkbox"><?php _e( 'Create an account?', 'woocommerce' ); ?></label>
|
<input class="input-checkbox" id="createaccount" <?php checked( ( true === $checkout->get_value( 'createaccount' ) || ( true === apply_filters( 'woocommerce_create_account_default_checked', false ) ) ), true) ?> type="checkbox" name="createaccount" value="1" /> <label for="createaccount" class="checkbox"><?php _e( 'Create an account?', 'woocommerce' ); ?></label>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
|
@ -62,7 +62,7 @@ global $woocommerce;
|
||||||
foreach ( $available_gateways as $gateway ) {
|
foreach ( $available_gateways as $gateway ) {
|
||||||
?>
|
?>
|
||||||
<li class="payment_method_<?php echo $gateway->id; ?>">
|
<li class="payment_method_<?php echo $gateway->id; ?>">
|
||||||
<input id="payment_method_<?php echo $gateway->id; ?>" type="radio" class="input-radio" name="payment_method" value="<?php echo esc_attr( $gateway->id ); ?>" <?php if ($gateway->chosen) echo 'checked="checked"'; ?> />
|
<input id="payment_method_<?php echo $gateway->id; ?>" type="radio" class="input-radio" name="payment_method" value="<?php echo esc_attr( $gateway->id ); ?>" <?php if ( $gateway->chosen ) echo 'checked="checked"'; ?> />
|
||||||
<label for="payment_method_<?php echo $gateway->id; ?>"><?php echo $gateway->get_title(); ?> <?php echo $gateway->get_icon(); ?></label>
|
<label for="payment_method_<?php echo $gateway->id; ?>"><?php echo $gateway->get_title(); ?> <?php echo $gateway->get_icon(); ?></label>
|
||||||
<?php
|
<?php
|
||||||
if ( $gateway->has_fields() || $gateway->get_description() ) {
|
if ( $gateway->has_fields() || $gateway->get_description() ) {
|
||||||
|
|
|
@ -50,7 +50,7 @@ global $woocommerce;
|
||||||
|
|
||||||
<?php do_action( 'woocommerce_before_order_notes', $checkout ); ?>
|
<?php do_action( 'woocommerce_before_order_notes', $checkout ); ?>
|
||||||
|
|
||||||
<?php if ( apply_filters( 'woocommerce_enable_order_notes_field', get_option( 'woocommerce_enable_order_comments', 'yes' ) == 'yes' ) ) : ?>
|
<?php if ( apply_filters( 'woocommerce_enable_order_notes_field', get_option( 'woocommerce_enable_order_comments', 'yes' ) === 'yes' ) ) : ?>
|
||||||
|
|
||||||
<?php if ( ! WC()->cart->needs_shipping() || WC()->cart->ship_to_billing_address_only() ) : ?>
|
<?php if ( ! WC()->cart->needs_shipping() || WC()->cart->ship_to_billing_address_only() ) : ?>
|
||||||
|
|
||||||
|
|
|
@ -50,8 +50,8 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
||||||
</tr>
|
</tr>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
|
|
||||||
<?php if ( WC()->cart->tax_display_cart == 'excl' ) : ?>
|
<?php if ( WC()->cart->tax_display_cart === 'excl' ) : ?>
|
||||||
<?php if ( get_option( 'woocommerce_tax_total_display' ) == 'itemized' ) : ?>
|
<?php if ( get_option( 'woocommerce_tax_total_display' ) === 'itemized' ) : ?>
|
||||||
<?php foreach ( WC()->cart->get_tax_totals() as $code => $tax ) : ?>
|
<?php foreach ( WC()->cart->get_tax_totals() as $code => $tax ) : ?>
|
||||||
<tr class="tax-rate tax-rate-<?php echo sanitize_title( $code ); ?>">
|
<tr class="tax-rate tax-rate-<?php echo sanitize_title( $code ); ?>">
|
||||||
<th><?php echo esc_html( $tax->label ); ?></th>
|
<th><?php echo esc_html( $tax->label ); ?></th>
|
||||||
|
|
|
@ -43,7 +43,7 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly ?>
|
||||||
</tfoot>
|
</tfoot>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<?php do_action('woocommerce_email_after_order_table', $order, true, false ); ?>
|
<?php do_action( 'woocommerce_email_after_order_table', $order, true, false ); ?>
|
||||||
|
|
||||||
<?php do_action( 'woocommerce_email_order_meta', $order, true, false ); ?>
|
<?php do_action( 'woocommerce_email_order_meta', $order, true, false ); ?>
|
||||||
|
|
||||||
|
|
|
@ -12,10 +12,10 @@ echo $email_heading . "\n\n";
|
||||||
|
|
||||||
echo sprintf( __( "Thanks for creating an account on %s. Your username is <strong>%s</strong>.", 'woocommerce' ), $blogname, $user_login ) . "\n\n";
|
echo sprintf( __( "Thanks for creating an account on %s. Your username is <strong>%s</strong>.", 'woocommerce' ), $blogname, $user_login ) . "\n\n";
|
||||||
|
|
||||||
if ( get_option( 'woocommerce_registration_generate_password' ) == 'yes' && $password_generated )
|
if ( get_option( 'woocommerce_registration_generate_password' ) === 'yes' && $password_generated )
|
||||||
echo sprintf( __( "Your password is <strong>%s</strong>.", 'woocommerce' ), $user_pass ) . "\n\n";
|
echo sprintf( __( "Your password is <strong>%s</strong>.", 'woocommerce' ), $user_pass ) . "\n\n";
|
||||||
|
|
||||||
echo sprintf(__( 'You can access your account area to view your orders and change your password here: %s.', 'woocommerce' ), get_permalink( wc_get_page_id( 'myaccount' ) ) ) . "\n\n";
|
echo sprintf( __( 'You can access your account area to view your orders and change your password here: %s.', 'woocommerce' ), get_permalink( wc_get_page_id( 'myaccount' ) ) ) . "\n\n";
|
||||||
|
|
||||||
echo "\n****************************************************\n\n";
|
echo "\n****************************************************\n\n";
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@ echo $email_heading . "\n\n";
|
||||||
|
|
||||||
echo __( 'Someone requested that the password be reset for the following account:', 'woocommerce' ) . "\r\n\r\n";
|
echo __( 'Someone requested that the password be reset for the following account:', 'woocommerce' ) . "\r\n\r\n";
|
||||||
echo network_home_url( '/' ) . "\r\n\r\n";
|
echo network_home_url( '/' ) . "\r\n\r\n";
|
||||||
echo sprintf(__( 'Username: %s', 'woocommerce' ), $user_login) . "\r\n\r\n";
|
echo sprintf( __( 'Username: %s', 'woocommerce' ), $user_login ) . "\r\n\r\n";
|
||||||
echo __( 'If this was a mistake, just ignore this email and nothing will happen.', 'woocommerce' ) . "\r\n\r\n";
|
echo __( 'If this was a mistake, just ignore this email and nothing will happen.', 'woocommerce' ) . "\r\n\r\n";
|
||||||
echo __( 'To reset your password, visit the following address:', 'woocommerce' ) . "\r\n\r\n";
|
echo __( 'To reset your password, visit the following address:', 'woocommerce' ) . "\r\n\r\n";
|
||||||
|
|
||||||
|
|
|
@ -41,7 +41,7 @@ if ( ( ! is_home() && ! is_front_page() && ! ( is_post_type_archive() && get_opt
|
||||||
|
|
||||||
echo $before . single_cat_title( '', false ) . $after;
|
echo $before . single_cat_title( '', false ) . $after;
|
||||||
|
|
||||||
} elseif ( is_tax('product_cat') ) {
|
} elseif ( is_tax( 'product_cat' ) ) {
|
||||||
|
|
||||||
echo $prepend;
|
echo $prepend;
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@ if ( 1 == $wp_query->found_posts || ! woocommerce_products_will_display() )
|
||||||
'price-desc' => __( 'Sort by price: high to low', 'woocommerce' )
|
'price-desc' => __( 'Sort by price: high to low', 'woocommerce' )
|
||||||
) );
|
) );
|
||||||
|
|
||||||
if ( get_option( 'woocommerce_enable_review_rating' ) == 'no' )
|
if ( get_option( 'woocommerce_enable_review_rating' ) === 'no' )
|
||||||
unset( $catalog_orderby['rating'] );
|
unset( $catalog_orderby['rating'] );
|
||||||
|
|
||||||
foreach ( $catalog_orderby as $id => $name )
|
foreach ( $catalog_orderby as $id => $name )
|
||||||
|
|
|
@ -11,7 +11,7 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
||||||
|
|
||||||
global $product;
|
global $product;
|
||||||
|
|
||||||
if ( get_option( 'woocommerce_enable_review_rating' ) == 'no' )
|
if ( get_option( 'woocommerce_enable_review_rating' ) === 'no' )
|
||||||
return;
|
return;
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
|
@ -13,6 +13,6 @@ global $post, $product;
|
||||||
?>
|
?>
|
||||||
<?php if ( $product->is_on_sale() ) : ?>
|
<?php if ( $product->is_on_sale() ) : ?>
|
||||||
|
|
||||||
<?php echo apply_filters( 'woocommerce_sale_flash', '<span class="onsale">' . __( 'Sale!', 'woocommerce' ).'</span>', $post, $product ); ?>
|
<?php echo apply_filters( 'woocommerce_sale_flash', '<span class="onsale">' . __( 'Sale!', 'woocommerce' ) . '</span>', $post, $product ); ?>
|
||||||
|
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
|
@ -37,7 +37,7 @@ global $woocommerce;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
echo '<p>'.__( 'Sorry, it seems that there are no payment methods which support adding a new payment method. Please contact us if you require assistance or wish to make alternate arrangements.', 'woocommerce' ).'</p>';
|
echo '<p>' . __( 'Sorry, it seems that there are no payment methods which support adding a new payment method. Please contact us if you require assistance or wish to make alternate arrangements.', 'woocommerce' ) . '</p>';
|
||||||
|
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -13,7 +13,7 @@ global $woocommerce;
|
||||||
|
|
||||||
$customer_id = get_current_user_id();
|
$customer_id = get_current_user_id();
|
||||||
|
|
||||||
if ( get_option('woocommerce_ship_to_billing_address_only') == 'no' && get_option('woocommerce_calc_shipping') !== 'no' ) {
|
if ( get_option( 'woocommerce_ship_to_billing_address_only' ) === 'no' && get_option( 'woocommerce_calc_shipping' ) !== 'no' ) {
|
||||||
$page_title = apply_filters( 'woocommerce_my_account_my_address_title', __( 'My Addresses', 'woocommerce' ) );
|
$page_title = apply_filters( 'woocommerce_my_account_my_address_title', __( 'My Addresses', 'woocommerce' ) );
|
||||||
$get_addresses = apply_filters( 'woocommerce_my_account_get_addresses', array(
|
$get_addresses = apply_filters( 'woocommerce_my_account_get_addresses', array(
|
||||||
'billing' => __( 'Billing Address', 'woocommerce' ),
|
'billing' => __( 'Billing Address', 'woocommerce' ),
|
||||||
|
|
|
@ -17,7 +17,7 @@ if ( ! comments_open() )
|
||||||
<div id="reviews">
|
<div id="reviews">
|
||||||
<div id="comments">
|
<div id="comments">
|
||||||
<h2><?php
|
<h2><?php
|
||||||
if ( get_option( 'woocommerce_enable_review_rating' ) == 'yes' && ( $count = $product->get_rating_count() ) )
|
if ( get_option( 'woocommerce_enable_review_rating' ) === 'yes' && ( $count = $product->get_rating_count() ) )
|
||||||
printf( _n('%s review for %s', '%s reviews for %s', $count, 'woocommerce'), $count, get_the_title() );
|
printf( _n('%s review for %s', '%s reviews for %s', $count, 'woocommerce'), $count, get_the_title() );
|
||||||
else
|
else
|
||||||
_e( 'Reviews', 'woocommerce' );
|
_e( 'Reviews', 'woocommerce' );
|
||||||
|
@ -43,7 +43,7 @@ if ( ! comments_open() )
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<?php if ( get_option( 'woocommerce_review_rating_verification_required' ) == 'no' || wc_customer_bought_product( '', get_current_user_id(), $product->id ) ) : ?>
|
<?php if ( get_option( 'woocommerce_review_rating_verification_required' ) === 'no' || wc_customer_bought_product( '', get_current_user_id(), $product->id ) ) : ?>
|
||||||
|
|
||||||
<div id="review_form_wrapper">
|
<div id="review_form_wrapper">
|
||||||
<div id="review_form">
|
<div id="review_form">
|
||||||
|
@ -51,7 +51,7 @@ if ( ! comments_open() )
|
||||||
$commenter = wp_get_current_commenter();
|
$commenter = wp_get_current_commenter();
|
||||||
|
|
||||||
$comment_form = array(
|
$comment_form = array(
|
||||||
'title_reply' => have_comments() ? __( 'Add a review', 'woocommerce' ) : __( 'Be the first to review', 'woocommerce' ).' “' . get_the_title() . '”',
|
'title_reply' => have_comments() ? __( 'Add a review', 'woocommerce' ) : __( 'Be the first to review', 'woocommerce' ) . ' “' . get_the_title() . '”',
|
||||||
'title_reply_to' => __( 'Leave a Reply to %s', 'woocommerce' ),
|
'title_reply_to' => __( 'Leave a Reply to %s', 'woocommerce' ),
|
||||||
'comment_notes_before' => '',
|
'comment_notes_before' => '',
|
||||||
'comment_notes_after' => '',
|
'comment_notes_after' => '',
|
||||||
|
@ -66,14 +66,14 @@ if ( ! comments_open() )
|
||||||
'comment_field' => ''
|
'comment_field' => ''
|
||||||
);
|
);
|
||||||
|
|
||||||
if ( get_option('woocommerce_enable_review_rating') == 'yes' ) {
|
if ( get_option( 'woocommerce_enable_review_rating' ) === 'yes' ) {
|
||||||
$comment_form['comment_field'] = '<p class="comment-form-rating"><label for="rating">' . __( 'Your Rating', 'woocommerce' ) .'</label><select name="rating" id="rating">
|
$comment_form['comment_field'] = '<p class="comment-form-rating"><label for="rating">' . __( 'Your Rating', 'woocommerce' ) .'</label><select name="rating" id="rating">
|
||||||
<option value="">'.__( 'Rate…', 'woocommerce' ).'</option>
|
<option value="">' . __( 'Rate…', 'woocommerce' ) . '</option>
|
||||||
<option value="5">'.__( 'Perfect', 'woocommerce' ).'</option>
|
<option value="5">' . __( 'Perfect', 'woocommerce' ) . '</option>
|
||||||
<option value="4">'.__( 'Good', 'woocommerce' ).'</option>
|
<option value="4">' . __( 'Good', 'woocommerce' ) . '</option>
|
||||||
<option value="3">'.__( 'Average', 'woocommerce' ).'</option>
|
<option value="3">' . __( 'Average', 'woocommerce' ) . '</option>
|
||||||
<option value="2">'.__( 'Not that bad', 'woocommerce' ).'</option>
|
<option value="2">' . __( 'Not that bad', 'woocommerce' ) . '</option>
|
||||||
<option value="1">'.__( 'Very Poor', 'woocommerce' ).'</option>
|
<option value="1">' . __( 'Very Poor', 'woocommerce' ) . '</option>
|
||||||
</select></p>';
|
</select></p>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
||||||
|
|
||||||
global $product;
|
global $product;
|
||||||
|
|
||||||
if ( get_option( 'woocommerce_enable_review_rating' ) == 'no' )
|
if ( get_option( 'woocommerce_enable_review_rating' ) === 'no' )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
$count = $product->get_rating_count();
|
$count = $product->get_rating_count();
|
||||||
|
|
|
@ -15,7 +15,7 @@ $related = $product->get_related( $posts_per_page );
|
||||||
|
|
||||||
if ( sizeof( $related ) == 0 ) return;
|
if ( sizeof( $related ) == 0 ) return;
|
||||||
|
|
||||||
$args = apply_filters('woocommerce_related_products_args', array(
|
$args = apply_filters( 'woocommerce_related_products_args', array(
|
||||||
'post_type' => 'product',
|
'post_type' => 'product',
|
||||||
'ignore_sticky_posts' => 1,
|
'ignore_sticky_posts' => 1,
|
||||||
'no_found_rows' => 1,
|
'no_found_rows' => 1,
|
||||||
|
|
|
@ -38,7 +38,7 @@ $rating = intval( get_comment_meta( $comment->comment_ID, 'rating', true ) );
|
||||||
<p class="meta">
|
<p class="meta">
|
||||||
<strong itemprop="author"><?php comment_author(); ?></strong> <?php
|
<strong itemprop="author"><?php comment_author(); ?></strong> <?php
|
||||||
|
|
||||||
if ( get_option('woocommerce_review_rating_verification_label') == 'yes' )
|
if ( get_option( 'woocommerce_review_rating_verification_label' ) === 'yes' )
|
||||||
if ( wc_customer_bought_product( $comment->comment_author_email, $comment->user_id, $comment->comment_post_ID ) )
|
if ( wc_customer_bought_product( $comment->comment_author_email, $comment->user_id, $comment->comment_post_ID ) )
|
||||||
echo '<em class="verified">(' . __( 'verified owner', 'woocommerce' ) . ')</em> ';
|
echo '<em class="verified">(' . __( 'verified owner', 'woocommerce' ) . ')</em> ';
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
||||||
|
|
||||||
global $woocommerce, $post;
|
global $woocommerce, $post;
|
||||||
|
|
||||||
$heading = esc_html( apply_filters('woocommerce_product_description_heading', __( 'Product Description', 'woocommerce' ) ) );
|
$heading = esc_html( apply_filters( 'woocommerce_product_description_heading', __( 'Product Description', 'woocommerce' ) ) );
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<h2><?php echo $heading; ?></h2>
|
<h2><?php echo $heading; ?></h2>
|
||||||
|
|
|
@ -21,14 +21,14 @@ $installer = include( 'includes/class-wc-install.php' );
|
||||||
$installer->remove_roles();
|
$installer->remove_roles();
|
||||||
|
|
||||||
// Pages
|
// Pages
|
||||||
wp_delete_post( get_option('woocommerce_shop_page_id'), true );
|
wp_delete_post( get_option( 'woocommerce_shop_page_id' ), true );
|
||||||
wp_delete_post( get_option('woocommerce_cart_page_id'), true );
|
wp_delete_post( get_option( 'woocommerce_cart_page_id' ), true );
|
||||||
wp_delete_post( get_option('woocommerce_checkout_page_id'), true );
|
wp_delete_post( get_option( 'woocommerce_checkout_page_id' ), true );
|
||||||
wp_delete_post( get_option('woocommerce_myaccount_page_id'), true );
|
wp_delete_post( get_option( 'woocommerce_myaccount_page_id' ), true );
|
||||||
wp_delete_post( get_option('woocommerce_edit_address_page_id'), true );
|
wp_delete_post( get_option( 'woocommerce_edit_address_page_id' ), true );
|
||||||
wp_delete_post( get_option('woocommerce_view_order_page_id'), true );
|
wp_delete_post( get_option( 'woocommerce_view_order_page_id' ), true );
|
||||||
wp_delete_post( get_option('woocommerce_change_password_page_id'), true );
|
wp_delete_post( get_option( 'woocommerce_change_password_page_id' ), true );
|
||||||
wp_delete_post( get_option('woocommerce_logout_page_id'), true );
|
wp_delete_post( get_option( 'woocommerce_logout_page_id' ), true );
|
||||||
|
|
||||||
// mijireh checkout page
|
// mijireh checkout page
|
||||||
if ( $mijireh_page = get_page_by_path( 'mijireh-secure-checkout' ) )
|
if ( $mijireh_page = get_page_by_path( 'mijireh-secure-checkout' ) )
|
||||||
|
|
|
@ -265,7 +265,7 @@ final class WooCommerce {
|
||||||
|
|
||||||
// 1 = PHP_ROUND_HALF_UP, 2 = PHP_ROUND_HALF_DOWN
|
// 1 = PHP_ROUND_HALF_UP, 2 = PHP_ROUND_HALF_DOWN
|
||||||
if ( ! defined( 'WC_TAX_ROUNDING_MODE' ) ) {
|
if ( ! defined( 'WC_TAX_ROUNDING_MODE' ) ) {
|
||||||
define( 'WC_TAX_ROUNDING_MODE', get_option( 'woocommerce_prices_include_tax' ) == 'yes' ? 2 : 1 );
|
define( 'WC_TAX_ROUNDING_MODE', get_option( 'woocommerce_prices_include_tax' ) === 'yes' ? 2 : 1 );
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( ! defined( 'WC_DELIMITER' ) ) {
|
if ( ! defined( 'WC_DELIMITER' ) ) {
|
||||||
|
@ -287,11 +287,11 @@ final class WooCommerce {
|
||||||
include_once( 'includes/admin/class-wc-admin.php' );
|
include_once( 'includes/admin/class-wc-admin.php' );
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( defined('DOING_AJAX') ) {
|
if ( defined( 'DOING_AJAX' ) ) {
|
||||||
$this->ajax_includes();
|
$this->ajax_includes();
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( ! is_admin() || defined('DOING_AJAX') ) {
|
if ( ! is_admin() || defined( 'DOING_AJAX' ) ) {
|
||||||
$this->frontend_includes();
|
$this->frontend_includes();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -385,7 +385,7 @@ final class WooCommerce {
|
||||||
$this->integrations = new WC_Integrations(); // Integrations class
|
$this->integrations = new WC_Integrations(); // Integrations class
|
||||||
|
|
||||||
// Classes/actions loaded for the frontend and for ajax requests
|
// Classes/actions loaded for the frontend and for ajax requests
|
||||||
if ( ! is_admin() || defined('DOING_AJAX') ) {
|
if ( ! is_admin() || defined( 'DOING_AJAX' ) ) {
|
||||||
|
|
||||||
// Session class, handles session data for customers - can be overwritten if custom handler is needed
|
// Session class, handles session data for customers - can be overwritten if custom handler is needed
|
||||||
$session_class = apply_filters( 'woocommerce_session_handler', 'WC_Session_Handler' );
|
$session_class = apply_filters( 'woocommerce_session_handler', 'WC_Session_Handler' );
|
||||||
|
|
Loading…
Reference in New Issue