File manager - Edit - /home/verseaumee/maze/wp-content/plugins/packlink-pro-shipping/Controllers/class-packlink-warehouse-controller.php
Back
<?php /** * Packlink PRO Shipping WooCommerce Integration. * * @package Packlink */ namespace Packlink\WooCommerce\Controllers; use Logeecom\Infrastructure\ServiceRegister; use Packlink\BusinessLogic\Controllers\LocationsController; use Packlink\BusinessLogic\Controllers\WarehouseController; use Packlink\BusinessLogic\Country\Interfaces\CountryServiceInterface; use Packlink\BusinessLogic\Country\WarehouseCountryService; use Packlink\BusinessLogic\DTO\Exceptions\FrontDtoNotRegisteredException; use Packlink\BusinessLogic\DTO\Exceptions\FrontDtoValidationException; use Packlink\BusinessLogic\Warehouse\Interfaces\WarehouseServiceInterface; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * Class Packlink_Warehouse_Controller * * @package Packlink\WooCommerce\Controllers */ class Packlink_Warehouse_Controller extends Packlink_Base_Controller { /** * Warehouse controller. * * @var WarehouseController */ private $warehouse_controller; /** * Locations controller. * * @var LocationsController */ private $locations_controller; /** * Packlink_Warehouse_Controller constructor. */ public function __construct() { /**@var WarehouseServiceInterface $warehouse_service */ $warehouse_service = ServiceRegister::getService(WarehouseServiceInterface::CLASS_NAME); /** * @var CountryServiceInterface $county_service */ $county_service = ServiceRegister::getService(WarehouseCountryService::CLASS_NAME); $this->warehouse_controller = new WarehouseController($warehouse_service, $county_service); $this->locations_controller = new LocationsController(); } /** * Retrieves senders warehouse. */ public function get() { $warehouse = $this->warehouse_controller->getWarehouse(); $this->return_json( $warehouse ? $warehouse->toArray() : array() ); } /** * Updates warehouse data. * * @throws FrontDtoNotRegisteredException When front dto is not registered. * @throws FrontDtoValidationException When warehouse data is not valid. */ public function submit() { $this->validate( 'yes', true ); $raw = $this->get_raw_input(); $payload = json_decode( $raw, true ); $result = $this->warehouse_controller->updateWarehouse( $payload ); $this->return_json( $result->toArray() ); } /** * Retrieves supported countries. */ public function get_countries() { $countries = $this->warehouse_controller->getWarehouseCountries(); $this->return_dto_entities_response( $countries ); } /** * Searches postal coded with given country and query. */ public function search_postal_codes() { $this->validate( 'yes', true ); $raw = $this->get_raw_input(); $payload = json_decode( $raw, true ); $this->return_dto_entities_response( $this->locations_controller->searchLocations( $payload ) ); } }
| ver. 1.4 |
Github
|
.
| PHP 8.5.7 | Generation time: 0 |
proxy
|
phpinfo
|
Settings