File tree Expand file tree Collapse file tree 30 files changed +72
-139
lines changed
ProductVideo/Block/Product/View Expand file tree Collapse file tree 30 files changed +72
-139
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 \Persistent \Block \Form ;
7
7
8
8
/**
9
9
* Remember Me 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 Remember extends \Magento \Framework \View \Element \Template
16
15
{
17
16
/**
18
- * Persistent data
19
- *
20
17
* @var \Magento\Persistent\Helper\Data
21
18
*/
22
19
protected $ _persistentData = null ;
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 \Persistent \Block \Header ;
7
7
11
11
12
12
/**
13
13
* Remember Me block
14
- *
15
- * @author Magento Core Team <core@magentocommerce.com>
16
14
*/
17
15
class Additional extends \Magento \Framework \View \Element \Html \Link
18
16
{
@@ -27,8 +25,6 @@ class Additional extends \Magento\Framework\View\Element\Html\Link
27
25
protected $ _persistentSessionHelper ;
28
26
29
27
/**
30
- * Customer repository
31
- *
32
28
* @var \Magento\Customer\Api\CustomerRepositoryInterface
33
29
*/
34
30
protected $ customerRepository ;
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 \ProductAlert \Block \Email ;
7
7
8
8
/**
9
9
* ProductAlert email price changed grid
10
- *
11
- * @author Magento Core Team <core@magentocommerce.com>
12
10
*/
13
11
class Price extends \Magento \ProductAlert \Block \Email \AbstractEmail
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 \ProductAlert \Block \Email ;
7
7
8
8
/**
9
9
* ProductAlert email back in stock grid
10
- *
11
- * @author Magento Core Team <core@magentocommerce.com>
12
10
*/
13
11
class Stock extends \Magento \ProductAlert \Block \Email \AbstractEmail
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 2013 Adobe
4
+ * All Rights Reserved .
5
5
*/
6
6
namespace Magento \ProductAlert \Helper ;
7
7
10
10
/**
11
11
* ProductAlert data helper
12
12
*
13
- * @author Magento Core Team <core@magentocommerce.com>
14
- *
15
13
* @api
16
14
* @since 100.0.2
17
15
*/
@@ -25,8 +23,6 @@ class Data extends \Magento\Framework\Url\Helper\Data
25
23
protected $ _product = null ;
26
24
27
25
/**
28
- * Core registry
29
- *
30
26
* @var \Magento\Framework\Registry
31
27
*/
32
28
protected $ _coreRegistry = null ;
@@ -85,6 +81,8 @@ public function setProduct($product)
85
81
}
86
82
87
83
/**
84
+ * Get store
85
+ *
88
86
* @return Store
89
87
*/
90
88
public function getStore ()
@@ -93,6 +91,8 @@ public function getStore()
93
91
}
94
92
95
93
/**
94
+ * Get Save Url
95
+ *
96
96
* @param string $type
97
97
* @return string
98
98
*/
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
declare (strict_types=1 );
7
7
35
35
/**
36
36
* ProductAlert Email processor
37
37
*
38
- * @author Magento Core Team <core@magentocommerce.com>
39
38
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
40
39
*
41
40
* @api
45
44
*/
46
45
class Email extends AbstractModel
47
46
{
48
- const XML_PATH_EMAIL_PRICE_TEMPLATE = 'catalog/productalert/email_price_template ' ;
47
+ public const XML_PATH_EMAIL_PRICE_TEMPLATE = 'catalog/productalert/email_price_template ' ;
49
48
50
- const XML_PATH_EMAIL_STOCK_TEMPLATE = 'catalog/productalert/email_stock_template ' ;
49
+ public const XML_PATH_EMAIL_STOCK_TEMPLATE = 'catalog/productalert/email_stock_template ' ;
51
50
52
- const XML_PATH_EMAIL_IDENTITY = 'catalog/productalert/email_identity ' ;
51
+ public const XML_PATH_EMAIL_IDENTITY = 'catalog/productalert/email_identity ' ;
53
52
54
53
/**
55
- * Type
56
- *
57
54
* @var string
58
55
*/
59
56
protected $ _type = 'price ' ;
@@ -87,22 +84,16 @@ class Email extends AbstractModel
87
84
protected $ _stockProducts = [];
88
85
89
86
/**
90
- * Price block
91
- *
92
87
* @var Price
93
88
*/
94
89
protected $ _priceBlock ;
95
90
96
91
/**
97
- * Stock block
98
- *
99
92
* @var Stock
100
93
*/
101
94
protected $ _stockBlock ;
102
95
103
96
/**
104
- * Product alert data
105
- *
106
97
* @var Data
107
98
*/
108
99
protected $ _productAlertData = null ;
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 \ProductAlert \Model \ResourceModel ;
7
7
8
8
use Magento \Framework \Model \AbstractModel ;
9
9
10
10
/**
11
11
* Product alert for back in abstract resource model
12
- *
13
- * @author Magento Core Team <core@magentocommerce.com>
14
12
*/
15
13
abstract class AbstractResource extends \Magento \Framework \Model \ResourceModel \Db \AbstractDb
16
14
{
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 \ProductAlert \Model \ResourceModel \Price ;
7
7
8
8
/**
9
9
* Product alert for changed price collection
10
10
*
11
- * @author Magento Core Team <core@magentocommerce.com>
12
11
* @api
13
12
* @since 100.0.2
14
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 \ProductAlert \Model \ResourceModel \Price \Customer ;
7
7
8
8
/**
9
9
* ProductAlert Price Customer collection
10
- *
11
- * @author Magento Core Team <core@magentocommerce.com>
12
10
*/
13
11
class Collection extends \Magento \Customer \Model \ResourceModel \Customer \Collection
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 \ProductAlert \Model \ResourceModel \Stock ;
7
7
8
8
/**
9
9
* Product alert for back in stock collection
10
10
*
11
- * @author Magento Core Team <core@magentocommerce.com>
12
- *
13
11
* @api
14
12
* @since 100.0.2
15
13
*/
You can’t perform that action at this time.
0 commit comments