Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Vertical.php
Go to the documentation of this file.
1 <?php
7 
15 {
26  private $verticals;
27 
31  public function __construct(array $verticals)
32  {
33  $this->verticals = $verticals;
34  }
35 
39  public function toOptionArray()
40  {
41  $result = [
42  ['value' => '', 'label' => __('--Please Select--')]
43  ];
44 
45  foreach ($this->verticals as $vertical) {
46  $result[] = ['value' => $vertical, 'label' => __($vertical)];
47  }
48 
49  return $result;
50  }
51 }
__()
Definition: __.php:13