File tree Expand file tree Collapse file tree 15 files changed +18
-59
lines changed
app/code/Magento/Wishlist Expand file tree Collapse file tree 15 files changed +18
-59
lines changed Original file line number Diff line number Diff line change 4
4
* See COPYING.txt for license details.
5
5
*/
6
6
7
- /**
8
- * Wishlist customer sharing block
9
- *
10
- * @author Magento Core Team <core@magentocommerce.com>
11
- */
12
7
namespace Magento \Wishlist \Block \Customer ;
13
8
14
9
use Magento \Captcha \Block \Captcha ;
15
10
16
11
/**
17
- * Class Sharing
12
+ * Wishlist customer sharing block
18
13
*
19
14
* @api
20
15
* @since 100.0.2
21
- * @package Magento\Wishlist\Block\Customer
22
16
*/
23
17
class Sharing extends \Magento \Framework \View \Element \Template
24
18
{
Original file line number Diff line number Diff line change 4
4
* See COPYING.txt for license details.
5
5
*/
6
6
7
- /**
8
- * @author Magento Core Team <core@magentocommerce.com>
9
- */
10
7
namespace Magento \Wishlist \Block \Customer ;
11
8
12
9
/**
Original file line number Diff line number Diff line change 4
4
* See COPYING.txt for license details.
5
5
*/
6
6
7
- /**
8
- * Wishlist block customer item cart column
9
- *
10
- * @author Magento Core Team <core@magentocommerce.com>
11
- */
12
7
namespace Magento \Wishlist \Block \Customer \Wishlist ;
13
8
14
9
/**
10
+ * Wishlist block customer item cart column
11
+ *
15
12
* @api
16
13
* @since 100.0.2
17
14
*/
18
15
class Button extends \Magento \Framework \View \Element \Template
19
16
{
20
17
/**
21
- * Wishlist config
22
- *
23
18
* @var \Magento\Wishlist\Model\Config
24
19
*/
25
20
protected $ _wishlistConfig ;
26
21
27
22
/**
28
- * Wishlist data
29
- *
30
23
* @var \Magento\Wishlist\Helper\Data
31
24
*/
32
25
protected $ _wishlistData = null ;
Original file line number Diff line number Diff line change 4
4
* See COPYING.txt for license details.
5
5
*/
6
6
7
- /**
8
- * @author Magento Core Team <core@magentocommerce.com>
9
- */
10
7
namespace Magento \Wishlist \Block \Customer \Wishlist \Item \Column ;
11
8
12
9
/**
13
10
* Model for item column in customer wishlist.
14
11
*
15
12
* @api
16
13
* @deprecated 101.1.2
14
+ * @see no longer used
17
15
* @since 100.0.2
18
16
*/
19
17
class Actions extends \Magento \Wishlist \Block \Customer \Wishlist \Item \Column
Original file line number Diff line number Diff line change 4
4
* See COPYING.txt for license details.
5
5
*/
6
6
7
- /**
8
- * @author Magento Core Team <core@magentocommerce.com>
9
- */
10
7
namespace Magento \Wishlist \Block \Customer \Wishlist \Item \Column ;
11
8
12
9
/**
13
10
* Wishlist block customer item cart column.
14
11
*
15
12
* @api
16
13
* @deprecated 101.1.2
14
+ * @see no longer used
17
15
* @since 100.0.2
18
16
*/
19
17
class Comment extends \Magento \Wishlist \Block \Customer \Wishlist \Item \Column
Original file line number Diff line number Diff line change 4
4
* See COPYING.txt for license details.
5
5
*/
6
6
7
- /**
8
- * @author Magento Core Team <core@magentocommerce.com>
9
- */
10
7
namespace Magento \Wishlist \Block \Customer \Wishlist \Item \Column ;
11
8
12
9
/**
13
10
* Edit item in customer wishlist table.
14
11
*
15
12
* @api
16
13
* @deprecated 101.1.2
14
+ * @see no longer used
17
15
* @since 100.0.2
18
16
*/
19
17
class Edit extends \Magento \Wishlist \Block \Customer \Wishlist \Item \Column
Original file line number Diff line number Diff line change 4
4
* See COPYING.txt for license details.
5
5
*/
6
6
7
- /**
8
- * @author Magento Core Team <core@magentocommerce.com>
9
- */
10
7
namespace Magento \Wishlist \Block \Customer \Wishlist \Item \Column ;
11
8
12
9
/**
13
10
* Wishlist block customer item cart column.
14
11
*
15
12
* @api
16
13
* @deprecated 101.1.2
14
+ * @see no longer used
17
15
* @since 100.0.2
18
16
*/
19
17
class Info extends \Magento \Wishlist \Block \Customer \Wishlist \Item \Column
Original file line number Diff line number Diff line change 4
4
* See COPYING.txt for license details.
5
5
*/
6
6
7
- /**
8
- * @author Magento Core Team <core@magentocommerce.com>
9
- */
10
7
namespace Magento \Wishlist \Block \Customer \Wishlist \Item \Column ;
11
8
12
9
/**
13
10
* Delete item column in customer wishlist table
14
11
*
15
12
* @api
16
13
* @deprecated 101.1.2
14
+ * @see no longer used
17
15
* @since 100.0.2
18
16
*/
19
17
class Remove extends \Magento \Wishlist \Block \Customer \Wishlist \Item \Column
Original file line number Diff line number Diff line change 6
6
7
7
/**
8
8
* Wishlist block shared items
9
- *
10
- * @author Magento Core Team <core@magentocommerce.com>
11
9
*/
12
10
namespace Magento \Wishlist \Block \Share ;
13
11
@@ -53,7 +51,6 @@ public function __construct(
53
51
* Prepare global layout
54
52
*
55
53
* @return $this
56
- *
57
54
*/
58
55
protected function _prepareLayout ()
59
56
{
Original file line number Diff line number Diff line change 21
21
/**
22
22
* Wishlist Data Helper
23
23
*
24
- * @author Magento Core Team <core@magentocommerce.com>
25
24
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
26
25
* @SuppressWarnings(PHPMD.CookieAndSessionMisuse)
27
26
*
You can’t perform that action at this time.
0 commit comments