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
{
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 \Paypal \Block \Adminhtml \Settlement ;
7
7
8
8
/**
9
9
* Settlement reports transaction details
10
- *
11
- * @author Magento Core Team <core@magentocommerce.com>
12
10
*/
13
11
class Details extends \Magento \Backend \Block \Widget \Form \Container
14
12
{
15
13
/**
16
- * Block construction
17
- * Initialize titles, buttons
14
+ * Block construction Initialize titles, buttons
18
15
*
19
16
* @return void
20
17
*/
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 \Paypal \Block \Adminhtml \Settlement ;
7
7
8
8
/**
9
9
* Adminhtml paypal settlement reports grid block
10
10
*
11
11
* @api
12
- * @author Magento Core Team <core@magentocommerce.com>
13
12
* @since 100.0.2
14
13
*/
15
14
class Report extends \Magento \Backend \Block \Widget \Grid \Container
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
namespace Magento \Paypal \Block \Express ;
13
13
* Paypal Express Onepage checkout block
14
14
*
15
15
* @api
16
- * @author Magento Core Team <core@magentocommerce.com>
17
16
* @since 100.0.2
18
17
*/
19
18
class Review extends \Magento \Framework \View \Element \Template
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 \Paypal \Block \Hosted \Pro ;
7
7
8
8
/**
9
9
* Hosted Pro link form
10
- *
11
- * @author Magento Core Team <core@magentocommerce.com>
12
10
*/
13
11
class Form extends \Magento \Payment \Block \Form
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 2011 Adobe
4
+ * All Rights Reserved .
5
5
*/
6
6
namespace Magento \Paypal \Block \Hosted \Pro ;
7
7
8
8
/**
9
9
* Hosted Pro iframe block
10
- *
11
- * @author Magento Core Team <core@magentocommerce.com>
12
10
*/
13
11
class Iframe extends \Magento \Paypal \Block \Iframe
14
12
{
15
13
/**
16
- * Internal constructor
17
- * Set payment method code
14
+ * Internal constructor Set payment method code
18
15
*
19
16
* @return void
20
17
*/
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
* Hosted Pro link infoblock
9
- *
10
- * @author Magento Core Team <core@magentocommerce.com>
11
9
*/
12
10
namespace Magento \Paypal \Block \Hosted \Pro ;
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
namespace Magento \Paypal \Block \Payflow \Advanced ;
7
7
8
8
/**
9
9
* Payflow Advanced iframe block
10
- *
11
- * @author Magento Core Team <core@magentocommerce.com>
12
10
*/
13
11
class Form extends \Magento \Paypal \Block \Payflow \Link \Form
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 2011 Adobe
4
+ * All Rights Reserved .
5
5
*/
6
6
namespace Magento \Paypal \Block \Payflow \Link ;
7
7
8
8
/**
9
9
* Payflow link iframe block
10
- *
11
- * @author Magento Core Team <core@magentocommerce.com>
12
10
*/
13
11
class Form extends \Magento \Payment \Block \Form
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 2011 Adobe
4
+ * All Rights Reserved .
5
5
*/
6
6
namespace Magento \Paypal \Model \Hostedpro ;
7
7
15
15
16
16
/**
17
17
* Website Payments Pro Hosted Solution request model to get token.
18
- *
19
- * @author Magento Core Team <core@magentocommerce.com>
20
18
*/
21
19
class Request extends DataObject
22
20
{
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 \Paypal \Model \Payflow ;
7
7
8
8
/**
9
9
* Payflow Link request model
10
- *
11
- * @author Magento Core Team <core@magentocommerce.com>
12
10
*/
13
11
class Request extends \Magento \Framework \DataObject
14
12
{
You can’t perform that action at this time.
0 commit comments