1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\ProductVideo\Helper;
use Magento\Framework\App\Helper\Context;
/**
* Helper to get attributes for video
*
* @api
* @since 100.0.2
*/
class Media extends \Magento\Framework\App\Helper\AbstractHelper
{
/**
* Catalog Module
*/
const MODULE_NAME = 'Magento_ProductVideo';
/**
* Configuration path
*/
const XML_PATH_YOUTUBE_API_KEY = 'catalog/product_video/youtube_api_key';
/**
* Configuration path for video play
*/
const XML_PATH_PLAY_IF_BASE = 'catalog/product_video/play_if_base';
/**
* Configuration path for show related
*/
const XML_PATH_SHOW_RELATED = 'catalog/product_video/show_related';
/**
* Configuration path for video auto restart
*/
const XML_PATH_VIDEO_AUTO_RESTART = 'catalog/product_video/video_auto_restart';
/**
* Media config node
*/
const MEDIA_TYPE_CONFIG_NODE = 'videos';
/**
* @param Context $context
*/
public function __construct(
Context $context
) {
parent::__construct($context);
}
/**
* Get play if base video attribute
*
* @return mixed
*/
public function getPlayIfBaseAttribute()
{
return $this->scopeConfig->getValue(self::XML_PATH_PLAY_IF_BASE);
}
/**
* Get show related youtube attribute
*
* @return mixed
*/
public function getShowRelatedAttribute()
{
return $this->scopeConfig->getValue(self::XML_PATH_SHOW_RELATED);
}
/**
* Get video auto restart attribute
*
* @return mixed
*/
public function getVideoAutoRestartAttribute()
{
return $this->scopeConfig->getValue(self::XML_PATH_VIDEO_AUTO_RESTART);
}
/**
* Retrieve YouTube API key
*
* @return string
*/
public function getYouTubeApiKey()
{
return $this->scopeConfig->getValue(self::XML_PATH_YOUTUBE_API_KEY);
}
}