AbandonedCheckoutSettings.php
3 years ago
AccountSettings.php
3 years ago
AdvancedSettings.php
3 years ago
BaseSettings.php
2 years ago
BrandSettings.php
3 years ago
CacheSettings.php
3 years ago
ConnectionSettings.php
3 years ago
CustomerSettings.php
3 years ago
ExportSettings.php
3 years ago
OrderSettings.php
3 years ago
ProcessorsSettings.php
3 years ago
ShippingProfileSettings.php
3 years ago
ShippingSettings.php
3 years ago
SubscriptionPreservationSettings.php
3 years ago
SubscriptionSettings.php
3 years ago
TaxRegionSettings.php
3 years ago
TaxSettings.php
3 years ago
UpgradeSettings.php
3 years ago
BaseSettings.php
150 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SureCart\Controllers\Admin\Settings; |
| 4 | |
| 5 | use SureCart\Models\Processor; |
| 6 | use SureCart\Support\Currency; |
| 7 | use SureCart\Support\TimeDate; |
| 8 | |
| 9 | /** |
| 10 | * Controls the settings page. |
| 11 | */ |
| 12 | abstract class BaseSettings { |
| 13 | /** |
| 14 | * Script handles for pages |
| 15 | * |
| 16 | * @var array |
| 17 | */ |
| 18 | protected $scripts = []; |
| 19 | |
| 20 | /** |
| 21 | * The template for the page. |
| 22 | * |
| 23 | * @var string |
| 24 | */ |
| 25 | protected $template = 'admin/settings-page'; |
| 26 | |
| 27 | /** |
| 28 | * Additional dependencies for this page. |
| 29 | * |
| 30 | * @var array |
| 31 | */ |
| 32 | protected $dependencies = []; |
| 33 | |
| 34 | /** |
| 35 | * Tabs for the page. |
| 36 | * |
| 37 | * @var array |
| 38 | */ |
| 39 | protected $tabs = []; |
| 40 | |
| 41 | /** |
| 42 | * Constructor. |
| 43 | */ |
| 44 | public function __construct() { |
| 45 | $this->tabs = [ |
| 46 | 'brand' => __( 'Design & Branding', 'surecart' ), |
| 47 | 'order' => __( 'Orders & Receipts', 'surecart' ), |
| 48 | 'abandoned_checkout' => __( 'Abandoned Checkout', 'surecart' ), |
| 49 | 'customer_notification_protocol' => __( 'Notifications', 'surecart' ), |
| 50 | 'subscription_protocol' => __( 'Subscriptions', 'surecart' ), |
| 51 | 'subscription_preservation' => __( 'Subscription Saver', 'surecart' ), |
| 52 | 'tax_protocol' => __( 'Taxes', 'surecart' ), |
| 53 | 'processors' => __( 'Payment Processors', 'surecart' ), |
| 54 | 'export' => __( 'Data Export', 'surecart' ), |
| 55 | 'connection' => __( 'Connection', 'surecart' ), |
| 56 | 'advanced' => __( 'Advanced', 'surecart' ), |
| 57 | ]; |
| 58 | } |
| 59 | |
| 60 | /** |
| 61 | * Show the page. |
| 62 | * |
| 63 | * @param \SureCartCore\Requests\RequestInterface $request Request. |
| 64 | * @return function |
| 65 | */ |
| 66 | public function show( \SureCartCore\Requests\RequestInterface $request ) { |
| 67 | // don't show admin notices on settings pages. |
| 68 | remove_all_actions( 'admin_notices' ); |
| 69 | |
| 70 | add_action( 'admin_enqueue_scripts', [ $this, 'showScripts' ] ); |
| 71 | |
| 72 | return \SureCart::view( $this->template )->with( |
| 73 | [ |
| 74 | 'tab' => $request->query( 'tab' ) ?? '', |
| 75 | 'breadcrumb' => ! empty( $this->tabs[ $request->query( 'tab' ) ?? '' ] ) ? $this->tabs[ $request->query( 'tab' ) ?? '' ] : '', |
| 76 | 'is_free' => (bool) ( \SureCart::account()->plan->free ?? true ), |
| 77 | 'entitlements' => \SureCart::account()->entitlements, |
| 78 | 'upgrade_url' => \SureCart::config()->links->purchase, |
| 79 | 'brand_color' => \SureCart::account()->brand->color ?? null, |
| 80 | 'status' => $request->query( 'status' ), |
| 81 | 'claim_url' => ! \SureCart::account()->claimed ? \SureCart::routeUrl( 'account.claim' ) : '', |
| 82 | ] |
| 83 | ); |
| 84 | } |
| 85 | |
| 86 | /** |
| 87 | * Enqueue the show scripts. |
| 88 | * |
| 89 | * @return void |
| 90 | */ |
| 91 | public function showScripts() { |
| 92 | if ( ! empty( $this->scripts['show'] ) ) { |
| 93 | $this->enqueue( $this->scripts['show'][0], $this->scripts['show'][1] ); |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | /** |
| 98 | * Enqueue a script. |
| 99 | * |
| 100 | * @param string $handle Script handle. |
| 101 | * @param string $path Path to script. |
| 102 | * @param array $deps Dependencies. |
| 103 | * |
| 104 | * @return void |
| 105 | */ |
| 106 | public function enqueue( $handle, $path, $deps = [] ) { |
| 107 | $deps = array_merge( $deps, $this->dependencies ); |
| 108 | $deps = array_merge( $deps, [ 'sc-ui-data', 'wp-data', 'wp-core-data' ] ); |
| 109 | |
| 110 | wp_enqueue_media(); |
| 111 | wp_enqueue_style( 'wp-components' ); |
| 112 | wp_enqueue_style( 'wp-block-editor' ); |
| 113 | wp_enqueue_style( 'surecart-themes-default' ); |
| 114 | wp_enqueue_script( 'surecart-components' ); |
| 115 | wp_enqueue_script( 'wp-format-library' ); |
| 116 | wp_enqueue_style( 'wp-format-library' ); |
| 117 | |
| 118 | // automatically load dependencies and version. |
| 119 | $asset_file = include plugin_dir_path( SURECART_PLUGIN_FILE ) . "dist/$path.asset.php"; |
| 120 | |
| 121 | // Enqueue scripts. |
| 122 | \SureCart::core()->assets()->enqueueScript( |
| 123 | $handle, |
| 124 | trailingslashit( \SureCart::core()->assets()->getUrl() ) . "dist/$path.js", |
| 125 | array_merge( $asset_file['dependencies'], $deps ), |
| 126 | $asset_file['version'] . '-' . \SureCart::plugin()->version() |
| 127 | ); |
| 128 | |
| 129 | wp_set_script_translations( $handle, 'surecart' ); |
| 130 | |
| 131 | wp_localize_script( |
| 132 | $handle, |
| 133 | 'scData', |
| 134 | [ |
| 135 | 'supported_currencies' => Currency::getSupportedCurrencies(), |
| 136 | 'app_url' => defined( 'SURECART_APP_URL' ) ? untrailingslashit( SURECART_APP_URL ) : 'https://app.surecart.com', |
| 137 | 'api_url' => \SureCart::requests()->getBaseUrl(), |
| 138 | 'currency' => \SureCart::account()->currency, |
| 139 | 'time_zones' => TimeDate::timezoneOptions(), |
| 140 | 'entitlements' => \SureCart::account()->entitlements, |
| 141 | 'brand_color' => \SureCart::account()->brand->color ?? null, |
| 142 | 'plan_name' => \SureCart::account()->plan->name ?? '', |
| 143 | 'processors' => Processor::get(), |
| 144 | 'is_block_theme' => (bool) wp_is_block_theme(), |
| 145 | 'claim_url' => ! \SureCart::account()->claimed ? \SureCart::routeUrl( 'account.claim' ) : '', |
| 146 | ] |
| 147 | ); |
| 148 | } |
| 149 | } |
| 150 |