Files
VestaCP/web/vesta/core/utils/Utils.class.php
2011-09-03 18:32:59 +03:00

13 lines
160 B
PHP

<?php
class Utils
{
public static function getCheckboxBooleanValue($checkbox_value)
{
return $checkbox_value == 'on' ? true : false;
}
}
?>