mirror of
https://github.com/serghey-rodin/vesta.git
synced 2026-09-08 21:08:57 +02:00
13 lines
223 B
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;
|
|
}
|
|
|
|
}
|
|
|
|
?>
|