File tree Expand file tree Collapse file tree 24 files changed +61
-107
lines changed
Test/Unit/Block/Adminhtml/Form/Field
Payment/Model/Method/Online
ResourceModel/Report/Settlement Expand file tree Collapse file tree 24 files changed +61
-107
lines changed Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
- * Copyright © Magento, Inc. All rights reserved.
4
- * See COPYING.txt for license details .
3
+ * Copyright 2011 Adobe
4
+ * All Rights Reserved .
5
5
*/
6
6
namespace Magento \OfflineShipping \Block \Adminhtml \Carrier \Tablerate ;
7
7
8
8
/**
9
9
* Shipping carrier table rate grid block
10
10
* WARNING: This grid used for export table rates
11
- *
12
- * @author Magento Core Team <core@magentocommerce.com>
13
11
*/
14
12
class Grid extends \Magento \Backend \Block \Widget \Grid \Extended
15
13
{
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
- * Copyright © Magento, Inc. All rights reserved.
4
- * See COPYING.txt for license details .
3
+ * Copyright 2011 Adobe
4
+ * All Rights Reserved .
5
5
*/
6
6
namespace Magento \OfflineShipping \Block \Adminhtml \Form \Field ;
7
7
8
8
/**
9
9
* Export CSV button for shipping table rates
10
- *
11
- * @author Magento Core Team <core@magentocommerce.com>
12
10
*/
13
11
class Export extends \Magento \Framework \Data \Form \Element \AbstractElement
14
12
{
@@ -36,6 +34,8 @@ public function __construct(
36
34
}
37
35
38
36
/**
37
+ * Get elementHtml
38
+ *
39
39
* @return string
40
40
*/
41
41
public function getElementHtml ()
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
- * Copyright © Magento, Inc. All rights reserved.
4
- * See COPYING.txt for license details .
3
+ * Copyright 2011 Adobe
4
+ * All Rights Reserved .
5
5
*/
6
6
namespace Magento \OfflineShipping \Block \Adminhtml \Form \Field ;
7
7
8
8
/**
9
9
* Custom import CSV file field for shipping table rates
10
- *
11
- * @author Magento Core Team <core@magentocommerce.com>
12
10
*/
13
11
class Import extends \Magento \Framework \Data \Form \Element \AbstractElement
14
12
{
15
13
/**
14
+ * Initialize Import
15
+ *
16
16
* @return void
17
17
*/
18
18
protected function _construct ()
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
- * Copyright © Magento, Inc. All rights reserved.
4
- * See COPYING.txt for license details .
3
+ * Copyright 2011 Adobe
4
+ * All Rights Reserved .
5
5
*/
6
6
7
7
/**
8
8
* Free shipping model
9
- *
10
- * @author Magento Core Team <core@magentocommerce.com>
11
9
*/
12
10
namespace Magento \OfflineShipping \Model \Carrier ;
13
11
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
- * Copyright © Magento, Inc. All rights reserved.
4
- * See COPYING.txt for license details .
3
+ * Copyright 2013 Adobe
4
+ * All Rights Reserved .
5
5
*/
6
6
namespace Magento \OfflineShipping \Model \Config \Backend ;
7
7
8
8
use Magento \Framework \Model \AbstractModel ;
9
9
10
10
/**
11
11
* Backend model for shipping table rates CSV importing
12
- *
13
- * @author Magento Core Team <core@magentocommerce.com>
14
12
*/
15
13
class Tablerate extends \Magento \Framework \App \Config \Value
16
14
{
@@ -44,6 +42,8 @@ public function __construct(
44
42
}
45
43
46
44
/**
45
+ * After save
46
+ *
47
47
* @return $this
48
48
*/
49
49
public function afterSave ()
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
- * Copyright © Magento, Inc. All rights reserved.
4
- * See COPYING.txt for license details .
3
+ * Copyright 2011 Adobe
4
+ * All Rights Reserved .
5
5
*/
6
6
7
7
/**
8
8
* Shipping table rates
9
- *
10
- * @author Magento Core Team <core@magentocommerce.com>
11
9
*/
12
10
13
11
namespace Magento \OfflineShipping \Model \ResourceModel \Carrier ;
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
- * Copyright © Magento, Inc. All rights reserved.
4
- * See COPYING.txt for license details .
3
+ * Copyright 2014 Adobe
4
+ * All Rights Reserved .
5
5
*/
6
6
7
7
/**
8
8
* Shopping Cart Rule data model
9
- *
10
- * @author Magento Core Team <core@magentocommerce.com>
11
9
*/
12
10
namespace Magento \OfflineShipping \Model \SalesRule ;
13
11
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
- * Copyright © Magento, Inc. All rights reserved.
4
- * See COPYING.txt for license details .
3
+ * Copyright 2011 Adobe
4
+ * All Rights Reserved .
5
5
*/
6
6
7
7
/**
8
8
* Shopping Cart Rule data model
9
- *
10
- * @author Magento Core Team <core@magentocommerce.com>
11
9
*/
12
10
namespace Magento \OfflineShipping \Model \SalesRule ;
13
11
@@ -20,10 +18,10 @@ class Rule
20
18
/**
21
19
* Free Shipping option "For matching items only"
22
20
*/
23
- const FREE_SHIPPING_ITEM = 1 ;
21
+ public const FREE_SHIPPING_ITEM = 1 ;
24
22
25
23
/**
26
24
* Free Shipping option "For shipment with matching items"
27
25
*/
28
- const FREE_SHIPPING_ADDRESS = 2 ;
26
+ public const FREE_SHIPPING_ADDRESS = 2 ;
29
27
}
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
- * Copyright © Magento, Inc. All rights reserved.
4
- * See COPYING.txt for license details .
3
+ * Copyright 2012 Adobe
4
+ * All Rights Reserved .
5
5
*/
6
6
declare (strict_types=1 );
7
7
8
8
/**
9
9
* Custom import CSV file field for shipping table rates
10
- *
11
- * @author Magento Core Team <core@magentocommerce.com>
12
10
*/
13
11
namespace Magento \OfflineShipping \Test \Unit \Block \Adminhtml \Form \Field ;
14
12
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
- * Copyright © Magento, Inc. All rights reserved.
4
- * See COPYING.txt for license details .
3
+ * Copyright 2015 Adobe
4
+ * All Rights Reserved .
5
5
*/
6
6
namespace Magento \Payment \Model \Method \Online ;
7
7
10
10
11
11
/**
12
12
* Gateway interface for online payment methods
13
- *
14
- * @author Magento Core Team <core@magentocommerce.com>
15
13
*/
16
14
interface GatewayInterface
17
15
{
You can’t perform that action at this time.
0 commit comments