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
OrderSettings.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SureCart\Controllers\Admin\Settings; |
| 4 | |
| 5 | /** |
| 6 | * Controls the settings page. |
| 7 | */ |
| 8 | class OrderSettings extends BaseSettings { |
| 9 | /** |
| 10 | * Script handles for pages |
| 11 | * |
| 12 | * @var array |
| 13 | */ |
| 14 | protected $scripts = [ |
| 15 | 'show' => [ 'surecart/scripts/admin/order', 'admin/settings/order' ], |
| 16 | ]; |
| 17 | } |
| 18 |