| Total Complexity | 5 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | class FormCur extends FormFloat |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * Creates input field for currency values. |
||
| 23 | * @param string $strName |
||
| 24 | * @param int $iSize |
||
| 25 | * @param int $wFlags default value = 0 |
||
| 26 | */ |
||
| 27 | public function __construct(string $strName, int $iSize, int $wFlags = 0) |
||
| 28 | { |
||
| 29 | parent::__construct($strName, $iSize, 2, $wFlags); |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * get format from configuration: <ul> |
||
| 34 | * <li> currency symbol (default: from locale settings) </li></ul> |
||
| 35 | */ |
||
| 36 | protected function onParentSet() : void |
||
| 50 | } |
||
| 51 | } |
||
| 53 |