-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change root directory, update README, copyrights and LICENSE.
- Loading branch information
1 parent
2c02536
commit 1ad5981
Showing
252 changed files
with
3,032 additions
and
1,557 deletions.
There are no files selected for viewing
13 changes: 12 additions & 1 deletion
13
LandedCost/Api/Data/DistrictInterface.php → Api/Data/DistrictInterface.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,17 @@ | ||
<?php | ||
/* | ||
* @copyright Open Software License (OSL 3.0) | ||
* Transiteo LandedCost | ||
* | ||
* NOTICE OF LICENSE | ||
* if you did not receive a copy of the license and are unable to | ||
* obtain it through the world-wide-web, please send an email | ||
* to [email protected] so we can send you a copy immediately. | ||
* @category Transiteo | ||
* @package Transiteo_LandedCost | ||
* @copyright Open Software License (OSL 3.0) | ||
* @author Blackbird Team | ||
* @license MIT | ||
* @support https://github.com/transiteo/Landed-Cost-Magento-2/issues/new/ | ||
*/ | ||
|
||
namespace Transiteo\LandedCost\Api\Data; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?php | ||
/* | ||
* Transiteo LandedCost | ||
* | ||
* NOTICE OF LICENSE | ||
* if you did not receive a copy of the license and are unable to | ||
* obtain it through the world-wide-web, please send an email | ||
* to [email protected] so we can send you a copy immediately. | ||
* @category Transiteo | ||
* @package Transiteo_LandedCost | ||
* @copyright Open Software License (OSL 3.0) | ||
* @author Blackbird Team | ||
* @license MIT | ||
* @support https://github.com/transiteo/Landed-Cost-Magento-2/issues/new/ | ||
*/ | ||
|
||
namespace Transiteo\LandedCost\Api\Data; | ||
|
||
interface DistrictSearchResultInterface | ||
{ | ||
/** | ||
* Get districts | ||
* | ||
* @return DistrictInterface[] | ||
*/ | ||
public function getItems(); | ||
|
||
/** | ||
* Set districts | ||
* | ||
* @param DistrictInterface[] $items | ||
* @return $this | ||
*/ | ||
public function setItems(array $items); | ||
} |
15 changes: 12 additions & 3 deletions
15
.../TransiteoItemTaxesExtensionInterface.php → .../TransiteoItemTaxesExtensionInterface.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
<?php | ||
/* | ||
* @author Blackbird Agency | ||
* @copyright Open Software License (OSL 3.0) | ||
* @link <[email protected]> | ||
* Transiteo LandedCost | ||
* | ||
* NOTICE OF LICENSE | ||
* if you did not receive a copy of the license and are unable to | ||
* obtain it through the world-wide-web, please send an email | ||
* to [email protected] so we can send you a copy immediately. | ||
* @category Transiteo | ||
* @package Transiteo_LandedCost | ||
* @copyright Open Software License (OSL 3.0) | ||
* @author Blackbird Team | ||
* @license MIT | ||
* @support https://github.com/transiteo/Landed-Cost-Magento-2/issues/new/ | ||
*/ | ||
|
||
namespace Transiteo\LandedCost\Api\Data; | ||
|
15 changes: 12 additions & 3 deletions
15
...Data/TransiteoTaxesExtensionInterface.php → ...Data/TransiteoTaxesExtensionInterface.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
<?php | ||
/* | ||
* @author Blackbird Agency | ||
* @copyright Open Software License (OSL 3.0) | ||
* @link <[email protected]> | ||
* Transiteo LandedCost | ||
* | ||
* NOTICE OF LICENSE | ||
* if you did not receive a copy of the license and are unable to | ||
* obtain it through the world-wide-web, please send an email | ||
* to [email protected] so we can send you a copy immediately. | ||
* @category Transiteo | ||
* @package Transiteo_LandedCost | ||
* @copyright Open Software License (OSL 3.0) | ||
* @author Blackbird Team | ||
* @license MIT | ||
* @support https://github.com/transiteo/Landed-Cost-Magento-2/issues/new/ | ||
*/ | ||
|
||
namespace Transiteo\LandedCost\Api\Data; | ||
|
13 changes: 12 additions & 1 deletion
13
...dCost/Api/DistrictRepositoryInterface.php → Api/DistrictRepositoryInterface.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,17 @@ | ||
<?php | ||
/* | ||
* @copyright Open Software License (OSL 3.0) | ||
* Transiteo LandedCost | ||
* | ||
* NOTICE OF LICENSE | ||
* if you did not receive a copy of the license and are unable to | ||
* obtain it through the world-wide-web, please send an email | ||
* to [email protected] so we can send you a copy immediately. | ||
* @category Transiteo | ||
* @package Transiteo_LandedCost | ||
* @copyright Open Software License (OSL 3.0) | ||
* @author Blackbird Team | ||
* @license MIT | ||
* @support https://github.com/transiteo/Landed-Cost-Magento-2/issues/new/ | ||
*/ | ||
|
||
namespace Transiteo\LandedCost\Api; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,17 @@ | ||
<?php | ||
/* | ||
* @copyright Open Software License (OSL 3.0) | ||
* Transiteo LandedCost | ||
* | ||
* NOTICE OF LICENSE | ||
* if you did not receive a copy of the license and are unable to | ||
* obtain it through the world-wide-web, please send an email | ||
* to [email protected] so we can send you a copy immediately. | ||
* @category Transiteo | ||
* @package Transiteo_LandedCost | ||
* @copyright Open Software License (OSL 3.0) | ||
* @author Blackbird Team | ||
* @license MIT | ||
* @support https://github.com/transiteo/Landed-Cost-Magento-2/issues/new/ | ||
*/ | ||
declare(strict_types=1); | ||
|
||
|
15 changes: 12 additions & 3 deletions
15
...dminhtml/Form/Field/OrderStatusColumn.php → ...dminhtml/Form/Field/OrderStatusColumn.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
<?php | ||
/* | ||
* @author Blackbird Agency | ||
* @copyright Open Software License (OSL 3.0) | ||
* @link <[email protected]> | ||
* Transiteo LandedCost | ||
* | ||
* NOTICE OF LICENSE | ||
* if you did not receive a copy of the license and are unable to | ||
* obtain it through the world-wide-web, please send an email | ||
* to [email protected] so we can send you a copy immediately. | ||
* @category Transiteo | ||
* @package Transiteo_LandedCost | ||
* @copyright Open Software License (OSL 3.0) | ||
* @author Blackbird Team | ||
* @license MIT | ||
* @support https://github.com/transiteo/Landed-Cost-Magento-2/issues/new/ | ||
*/ | ||
|
||
namespace Transiteo\LandedCost\Block\Adminhtml\Form\Field; | ||
|
15 changes: 12 additions & 3 deletions
15
.../Form/Field/OrderStatusCorrespondence.php → .../Form/Field/OrderStatusCorrespondence.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
<?php | ||
/* | ||
* @author Blackbird Agency | ||
* @copyright Open Software License (OSL 3.0) | ||
* @link <[email protected]> | ||
* Transiteo LandedCost | ||
* | ||
* NOTICE OF LICENSE | ||
* if you did not receive a copy of the license and are unable to | ||
* obtain it through the world-wide-web, please send an email | ||
* to [email protected] so we can send you a copy immediately. | ||
* @category Transiteo | ||
* @package Transiteo_LandedCost | ||
* @copyright Open Software License (OSL 3.0) | ||
* @author Blackbird Team | ||
* @license MIT | ||
* @support https://github.com/transiteo/Landed-Cost-Magento-2/issues/new/ | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
15 changes: 12 additions & 3 deletions
15
...Form/Field/TransiteoOrderStatusColumn.php → ...Form/Field/TransiteoOrderStatusColumn.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
<?php | ||
/* | ||
* @author Blackbird Agency | ||
* @copyright Open Software License (OSL 3.0) | ||
* @link <[email protected]> | ||
* Transiteo LandedCost | ||
* | ||
* NOTICE OF LICENSE | ||
* if you did not receive a copy of the license and are unable to | ||
* obtain it through the world-wide-web, please send an email | ||
* to [email protected] so we can send you a copy immediately. | ||
* @category Transiteo | ||
* @package Transiteo_LandedCost | ||
* @copyright Open Software License (OSL 3.0) | ||
* @author Blackbird Team | ||
* @license MIT | ||
* @support https://github.com/transiteo/Landed-Cost-Magento-2/issues/new/ | ||
*/ | ||
|
||
namespace Transiteo\LandedCost\Block\Adminhtml\Form\Field; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<?php | ||
/* | ||
* Transiteo LandedCost | ||
* | ||
* NOTICE OF LICENSE | ||
* if you did not receive a copy of the license and are unable to | ||
* obtain it through the world-wide-web, please send an email | ||
* to [email protected] so we can send you a copy immediately. | ||
* @category Transiteo | ||
* @package Transiteo_LandedCost | ||
* @copyright Open Software License (OSL 3.0) | ||
* @author Blackbird Team | ||
* @license MIT | ||
* @support https://github.com/transiteo/Landed-Cost-Magento-2/issues/new/ | ||
*/ | ||
|
||
namespace Transiteo\LandedCost\Block; | ||
|
||
class Api extends \Magento\Framework\View\Element\Template | ||
{ | ||
protected $_isScopePrivate; | ||
|
||
public function __construct( | ||
\Magento\Framework\View\Element\Template\Context $context, | ||
array $data = [] | ||
) | ||
{ | ||
parent::__construct($context, $data); | ||
$this->_isScopePrivate = true; | ||
} | ||
|
||
public function getTaxesApi() | ||
{ | ||
$getApiPrice = '6 euros'; | ||
return $getApiPrice; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
<?php | ||
/* | ||
* @author Blackbird Agency | ||
* @copyright Open Software License (OSL 3.0) | ||
* @link <[email protected]> | ||
* Transiteo LandedCost | ||
* | ||
* NOTICE OF LICENSE | ||
* if you did not receive a copy of the license and are unable to | ||
* obtain it through the world-wide-web, please send an email | ||
* to [email protected] so we can send you a copy immediately. | ||
* @category Transiteo | ||
* @package Transiteo_LandedCost | ||
* @copyright Open Software License (OSL 3.0) | ||
* @author Blackbird Team | ||
* @license MIT | ||
* @support https://github.com/transiteo/Landed-Cost-Magento-2/issues/new/ | ||
*/ | ||
|
||
namespace Transiteo\LandedCost\Block; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
<?php | ||
/* | ||
* @author Blackbird Agency | ||
* @copyright Open Software License (OSL 3.0) | ||
* @link <[email protected]> | ||
* Transiteo LandedCost | ||
* | ||
* NOTICE OF LICENSE | ||
* if you did not receive a copy of the license and are unable to | ||
* obtain it through the world-wide-web, please send an email | ||
* to [email protected] so we can send you a copy immediately. | ||
* @category Transiteo | ||
* @package Transiteo_LandedCost | ||
* @copyright Open Software License (OSL 3.0) | ||
* @author Blackbird Team | ||
* @license MIT | ||
* @support https://github.com/transiteo/Landed-Cost-Magento-2/issues/new/ | ||
*/ | ||
|
||
namespace Transiteo\LandedCost\Block\Order; | ||
|
13 changes: 12 additions & 1 deletion
13
LandedCost/Console/Command/GeoIpUpdater.php → Console/Command/GeoIpUpdater.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,17 @@ | ||
<?php | ||
/* | ||
* @copyright Open Software License (OSL 3.0) | ||
* Transiteo LandedCost | ||
* | ||
* NOTICE OF LICENSE | ||
* if you did not receive a copy of the license and are unable to | ||
* obtain it through the world-wide-web, please send an email | ||
* to [email protected] so we can send you a copy immediately. | ||
* @category Transiteo | ||
* @package Transiteo_LandedCost | ||
* @copyright Open Software License (OSL 3.0) | ||
* @author Blackbird Team | ||
* @license MIT | ||
* @support https://github.com/transiteo/Landed-Cost-Magento-2/issues/new/ | ||
*/ | ||
declare(strict_types=1); | ||
|
||
|
15 changes: 12 additions & 3 deletions
15
...Controller/Adminhtml/Activation/Index.php → Controller/Adminhtml/Activation/Index.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
<?php | ||
/* | ||
* @author Blackbird Agency | ||
* @copyright Open Software License (OSL 3.0) | ||
* @link <[email protected]> | ||
* Transiteo LandedCost | ||
* | ||
* NOTICE OF LICENSE | ||
* if you did not receive a copy of the license and are unable to | ||
* obtain it through the world-wide-web, please send an email | ||
* to [email protected] so we can send you a copy immediately. | ||
* @category Transiteo | ||
* @package Transiteo_LandedCost | ||
* @copyright Open Software License (OSL 3.0) | ||
* @author Blackbird Team | ||
* @license MIT | ||
* @support https://github.com/transiteo/Landed-Cost-Magento-2/issues/new/ | ||
*/ | ||
|
||
namespace Transiteo\LandedCost\Controller\Adminhtml\Activation; | ||
|
13 changes: 12 additions & 1 deletion
13
...t/Controller/Adminhtml/Checkout/Taxes.php → Controller/Adminhtml/Checkout/Taxes.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,17 @@ | ||
<?php | ||
/* | ||
* @copyright Open Software License (OSL 3.0) | ||
* Transiteo LandedCost | ||
* | ||
* NOTICE OF LICENSE | ||
* if you did not receive a copy of the license and are unable to | ||
* obtain it through the world-wide-web, please send an email | ||
* to [email protected] so we can send you a copy immediately. | ||
* @category Transiteo | ||
* @package Transiteo_LandedCost | ||
* @copyright Open Software License (OSL 3.0) | ||
* @author Blackbird Team | ||
* @license MIT | ||
* @support https://github.com/transiteo/Landed-Cost-Magento-2/issues/new/ | ||
*/ | ||
declare(strict_types=1); | ||
|
||
|
15 changes: 12 additions & 3 deletions
15
...t/Controller/Adminhtml/Settings/Index.php → Controller/Adminhtml/Settings/Index.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
<?php | ||
/* | ||
* @author Blackbird Agency | ||
* @copyright Open Software License (OSL 3.0) | ||
* @link <[email protected]> | ||
* Transiteo LandedCost | ||
* | ||
* NOTICE OF LICENSE | ||
* if you did not receive a copy of the license and are unable to | ||
* obtain it through the world-wide-web, please send an email | ||
* to [email protected] so we can send you a copy immediately. | ||
* @category Transiteo | ||
* @package Transiteo_LandedCost | ||
* @copyright Open Software License (OSL 3.0) | ||
* @author Blackbird Team | ||
* @license MIT | ||
* @support https://github.com/transiteo/Landed-Cost-Magento-2/issues/new/ | ||
*/ | ||
|
||
namespace Transiteo\LandedCost\Controller\Adminhtml\Settings; | ||
|
13 changes: 12 additions & 1 deletion
13
LandedCost/Controller/Checkout/Taxes.php → Controller/Checkout/Taxes.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,17 @@ | ||
<?php | ||
/* | ||
* @copyright Open Software License (OSL 3.0) | ||
* Transiteo LandedCost | ||
* | ||
* NOTICE OF LICENSE | ||
* if you did not receive a copy of the license and are unable to | ||
* obtain it through the world-wide-web, please send an email | ||
* to [email protected] so we can send you a copy immediately. | ||
* @category Transiteo | ||
* @package Transiteo_LandedCost | ||
* @copyright Open Software License (OSL 3.0) | ||
* @author Blackbird Team | ||
* @license MIT | ||
* @support https://github.com/transiteo/Landed-Cost-Magento-2/issues/new/ | ||
*/ | ||
declare(strict_types=1); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
<?php | ||
/* | ||
* @author Blackbird Agency | ||
* @copyright Open Software License (OSL 3.0) | ||
* @link <[email protected]> | ||
* Transiteo LandedCost | ||
* | ||
* NOTICE OF LICENSE | ||
* if you did not receive a copy of the license and are unable to | ||
* obtain it through the world-wide-web, please send an email | ||
* to [email protected] so we can send you a copy immediately. | ||
* @category Transiteo | ||
* @package Transiteo_LandedCost | ||
* @copyright Open Software License (OSL 3.0) | ||
* @author Blackbird Team | ||
* @license MIT | ||
* @support https://github.com/transiteo/Landed-Cost-Magento-2/issues/new/ | ||
*/ | ||
|
||
namespace Transiteo\LandedCost\Controller; | ||
|
Oops, something went wrong.