Files
VestaCP/web/vesta/core/utils/Utils.class.php

13 lines
223 B
PHP
Raw Normal View History

2011-09-03 18:32:59 +03:00
<?php
class Utils
{
public static function getCheckboxBooleanValue($checkbox_value)
{
return ($checkbox_value == 'on' || $checkbox_value == 'yes' || $checkbox_value === TRUE) ? true : false;
2011-09-03 18:32:59 +03:00
}
}
?>