FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
surecart
/
packages
/
blocks
/
Controllers
Edit File: CustomerController.php
<?php namespace SureCartBlocks\Controllers; use SureCart\Models\Component; use SureCart\Models\Customer; use SureCart\Models\User; /** * Payment method block controller class. */ class CustomerController extends BaseController { /** * List all payment methods. * * @param array $attributes Block attributes. * @param string $content Block content. * * @return function */ public function preview( $attributes, $content ) { if ( ! is_user_logged_in() ) { return; } $output = ''; // show test. if ( ! empty( User::current()->customerId( 'test' ) ) ) { $output .= '<sc-dashboard-customer-details heading="' . esc_attr( $attributes['title'] ?? '' ) . '" customer-id="' . User::current()->customerId( 'test' ) . '"></sc-dashboard-customer-details>'; } // show live. if ( ! empty( User::current()->customerId( 'live' ) ) ) { $output .= '<sc-dashboard-customer-details heading="' . esc_attr( $attributes['title'] ?? '' ) . '" customer-id="' . User::current()->customerId( 'live' ) . '"></sc-dashboard-customer-details>'; } // show for non-customers. if ( empty( $output ) ) { $output .= '<sc-dashboard-customer-details heading="' . esc_attr( $attributes['title'] ?? '' ) . '" customer-id=""></sc-dashboard-customer-details>'; } return $output; } public function show() { $back = add_query_arg( [ 'tab' => $this->getTab() ], remove_query_arg( array_keys( $_GET ) ) ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended ob_start(); ?> <sc-spacing style="--spacing: var(--sc-spacing-large)"> <sc-breadcrumbs> <sc-breadcrumb href="<?php echo esc_url( $back ); ?>"> <?php esc_html_e( 'Dashboard', 'surecart' ); ?> </sc-breadcrumb> <sc-breadcrumb> <?php esc_html_e( 'Billing', 'surecart' ); ?> </sc-breadcrumb> </sc-breadcrumbs> <?php echo ( new PaymentMethodController() )->index( [ 'title' => esc_html__( 'Payment Methods', 'surecart' ) ], '' ); ?> <?php echo $this->preview( [ 'title' => esc_html__( 'Billing Details', 'surecart' ) ], '' ); ?> </sc-spacing> <?php return ob_get_clean(); } /** * Show a view to add a payment method. * * @return function */ public function edit() { $back = add_query_arg( [ 'tab' => $this->getTab() ], remove_query_arg( array_keys( $_GET ) ) ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended $id = $this->getId(); if ( ! current_user_can( 'edit_sc_customer', $id, [] ) ) { wp_die( 'You are not allowed to edit this customer', 'surecart' ); } ob_start(); ?> <sc-spacing style="--spacing: var(--sc-spacing-large)"> <sc-breadcrumbs> <sc-breadcrumb href="<?php echo esc_url( $back ); ?>"> <?php esc_html_e( 'Dashboard', 'surecart' ); ?> </sc-breadcrumb> <sc-breadcrumb href=" <?php echo esc_url( add_query_arg( [ 'tab' => $this->getTab(), 'model' => 'customer', 'action' => 'show', 'id' => $this->getId(), ], remove_query_arg( array_keys( $_GET ) ) // phpcs:ignore WordPress.Security.NonceVerification.Recommended ) ); ?> "> <?php esc_html_e( 'Billing', 'surecart' ); ?> </sc-breadcrumb> <sc-breadcrumb> <?php esc_html_e( 'Billing Details', 'surecart' ); ?> </sc-breadcrumb> </sc-breadcrumbs> <?php $customer = Customer::with( [ 'shipping_address', 'billing_address', 'tax_identifier' ] )->find( $id ); if ( ! $customer ) { return; } echo wp_kses_post( Component::tag( 'sc-customer-edit' ) ->id( 'customer-customer-edit-live' ) ->with( [ 'header' => __( 'Update Billing Details', 'surecart' ), 'customer' => $customer, 'successUrl' => esc_url_raw( $back ), ] )->render() ); ?> </sc-spacing> <?php return ob_get_clean(); } }
Save
Back