forked from magento/magento2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVertical.php
More file actions
51 lines (46 loc) · 1.2 KB
/
Vertical.php
File metadata and controls
51 lines (46 loc) · 1.2 KB
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
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Analytics\Model\Config\Source;
/**
* A source model for verticals configuration.
*
* Prepares and provides options for a selector of verticals which is located
* in the corresponding configuration menu of the Admin area.
*/
class Vertical implements \Magento\Framework\Data\OptionSourceInterface
{
/**
* The list of possible verticals.
*
* This list is configured via di.xml and may be extended or changed
* in any module if it is needed.
*
* It is supposed that the list may be changed in each Magento release.
*
* @var array
*/
private $verticals;
/**
* @param array $verticals
*/
public function __construct(array $verticals)
{
$this->verticals = $verticals;
}
/**
* {@inheritdoc}
*/
public function toOptionArray()
{
$result = [
['value' => '', 'label' => __('--Please Select--')]
];
foreach ($this->verticals as $vertical) {
$result[] = ['value' => $vertical, 'label' => __($vertical)];
}
return $result;
}
}