Common\Core\CommonFormCheckbox::getActualValue PHP Метод

getActualValue() публичный Метод

Returns the value corresponding with the state of the checkbox
public getActualValue ( mixed $checked = 'Y', mixed $notChecked = 'N' ) : string
$checked mixed the return value when checked
$notChecked mixed the return value when not checked
Результат string
    public function getActualValue($checked = 'Y', $notChecked = 'N')
    {
        return $this->isChecked() ? $checked : $notChecked;
    }
CommonFormCheckbox