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

13 lines
223 B
PHP

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