-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStatelist.php
45 lines (35 loc) · 1.12 KB
/
Statelist.php
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
<?php
namespace Binstellar\Freehomemeasure\Model;
use Binstellar\Freehomemeasure\Api\StatelistInterface;
class Statelist implements StatelistInterface
{
private $directoryData;
protected $resultJsonFactory;
public function __construct(
\Magento\Directory\Block\Data $directoryData,
\Magento\Framework\Controller\Result\JsonFactory $resultJsonFactory,
\Magento\Framework\Webapi\Rest\Request $request
) {
$this->directoryData = $directoryData;
$this->resultJsonFactory = $resultJsonFactory;
$this->request = $request;
}
public function getStates()
{
return $this->directoryData->getRegionCollection()->toOptionArray();
}
/**
* {@inheritdoc}
*/
public function getStatelist()
{
$statelist = array();
$states = $this->getStates();
foreach ($states as $key) {
if (!empty($key['value']) || !empty($key['title'])) {
$statelist[] = ['id' => $key['value'],'name' => $key['title']];
}
}
return $statelist;
}
}