-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathModuleHelper.php
80 lines (66 loc) · 1.54 KB
/
ModuleHelper.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
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
<?php
/**
* Class AbstractHelper
*
* @author Open Source Team
* @copyright 2021 Pagar.me (https://pagar.me)
* @license https://pagar.me Copyright
*
* @link https://pagar.me
*/
namespace Pagarme\Pagarme\Helper;
use Magento\Framework\Module\ModuleListInterface;
class ModuleHelper extends \Magento\Framework\App\Helper\AbstractHelper
{
protected $moduleList;
protected $taxVat;
/**
* ModuleHelper constructor.
* @param ModuleListInterface $moduleList
*/
public function __construct(
ModuleListInterface $moduleList
)
{
$this->setModule($moduleList);
}
/**
* @param $moduleName
* @return mixed
*/
public function getVersion($moduleName)
{
return $this->getModule()->getOne($moduleName)['setup_version'];
}
/**
* @return mixed
*/
public function getModule()
{
return $this->moduleList;
}
/**
* @param $moduleList
* @return $this
*/
public function setModule($moduleList)
{
$this->moduleList = $moduleList;
return $this;
}
public function setTaxVat($taxVat,$format = true)
{
$this->taxVat = trim($taxVat);
if(empty($this->taxVat)){
$this->taxVat = null;
}
if(($format == true) and (!is_null($this->taxVat))){
$this->taxVat = preg_replace("/[^0-9]/", "", $this->taxVat);
}
return $this->taxVat;
}
public function getTaxVat()
{
return $this->taxVat;
}
}